racker
racker copied to clipboard
Racker is an opinionated Ruby DSL for generating Packer(www.packer.io) templates.
Per https://github.com/mitchellh/packer/pull/3860/files I'm wondering how different racker is to https://github.com/ianchesal/packer-config. Any thoughts? Thanks, Martin. https://github.com/ianchesal/packer-config/issues/21
This should fix #12 I also had to change development version for `rubocop` since it was incompatible with new rake versions (bbatsov/rubocop#2931). Bundler errors in build were fixed (bundler/bundler#3559)
I cannot get racker to output [min_packer_version](https://www.packer.io/docs/templates/introduction.html#min_packer_version) (and description). ```ruby Racker::Processor.register_template do |template| template.min_packer_version = "0.11.0" template.description = "my description" end ``` Don't do the job. Roughly skimming rackers code...
@aspring, I was wondering if it makes sense to add the ability of specifying which template needs to be processed before a template but within the template itself. So that...