-
Notifications
You must be signed in to change notification settings - Fork 168
Initial specification of policyfile builder #53
Conversation
p.add_cookbook("bar") do |cb| | ||
cb.cache_key("bar-f59ee7a5bca6a4e606b67f7f856b768d847c39bb") | ||
cb.source("git://github.com/opscode-cookbooks/bar.git") | ||
cb.use_content_identifier # default (?) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I think this should be default since if you don't have this you potentially don't know if the cookbook you've got is the right one.
One different approach would be to get source types are required parameters separately. E.g. # cb.source("https://community.getchef.com/api/cookbooks/foo/1.0.0")
# =>
cb.source("https://community.getchef.com/")
cb.version("1.0.0")
# We already have the cookbook name
# cb.source("git://github.com/opscode-cookbooks/bar.git")
# =>
cb.source("git://github.com/opscode-cookbooks/bar.git")
cb.revision("f59ee7a5bca6a4e606b67f7f856b768d847c39bb")
# cb.source("git://github.com/opscode-cookbooks/bar.git")
# =>
cb.source("https://chef-server.example.com/")
cb.version("1.2.3") Taking this one step further would be to be explicit about the source type cb.source(:server, "https://chef-server.example.com/")
cb.source(:site, "https://community.getchef.com/") |
@sersut Keep in mind that source is purely informational at the Policyfile.lock level. The only things required for the upload and later client download to function are:
Everything else is informational and designed to help humans track and understand changes. If given a policyfile.lock diff that shows that the source of a cookbook changed from |
👍 Party on!!! I understand things might change in the future but would be nice to have some minimal documentation explaining what we believe these mean:
|
@sersut where? In the tests? |
|
||
class CachedCookbook | ||
|
||
attr_reader :name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@danielsdeleo maybe here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That works.
Adds a Policyfile.lock Building DSL. The internals are basically complete. We could add a CLI for this, and I think we should eventually, but I'd like to wait on that until we find the proper long-term home for this code (which might not be in ChefDK).
The general design assumptions are: