On Wednesday, May 22, 2013 at 2:33 PM, Torben Knerr wrote:
Hey Jamie,picking up your last example:site :opscodechef_api :Configcookbook 'my-app', github: 'RiotGames/my-app'cookbook 'some-dependency', github: 'RiotGames/some-dependency'If RiotGames/my-app/metadata.rb says:depends 'some-dependency', '= 1.0'...then Berkshelf would still try to use the HEAD rev in the master branch, right?So if `some-dependency` lives in a git repo but not on the community site (e.g. if you maintain a fork of a community cookbook) and you want to get v1.0, then you would have to specify the branch explicitly in that Berksfile, i.e.:cookbook 'some-dependency', github: 'RiotGames/some-dependency', branch: 'v1.0'Wouldn't it make sense if Berkshelf per convention tries to detect the "best branch to use"?In the above example '= 1.0' this is simple, its actaully a bit more complicated due to the various version specifiers (e.g. '=> 1.0', '~>1.1', etc)Cheers,TorbenOn Wed, May 22, 2013 at 10:15 PM, Jamie Winsor < " target="_blank"> > wrote:Hey Mark,Given the Berksfile:site :opscodecookbook 'my-app', github: 'RiotGames/my-app'This will point to HEAD of the Git repository located at that Github repo. It will reflect on the metadata.rb of that file and use one of the 'default sources' to find, and download, any cookbooks found in the metadata of 'my-app'. Let's say that 'my-app' depended on the NGINX cookbook. Berkshelf would go out to the Opscode community site to find the cookbook because you have only one default source, 'site :opscode'.Given the Berksfile:site :opscodechef_api :configcookbook 'my-app', github: 'RiotGames/my-app'Now we have two default sources. First we will go out to the community site and attempt to find the version of the NGINX cookbook that 'my-app' depends on. If it is not found then we will go to your configured Chef Server using the credentials in your Berkshelf configuration (or Knife configuration if you don't have a Berkshelf configuration) and attempt to find it there.Let's say that 'my-app' depended on a cookbook which is not found on your Chef server or on the Community site, or let's say you want to pull this other dependency that out of Git. You would then have to explicitly list the location of that cookbook in your Berksfile. Here is an example:site :opscodechef_api :Configcookbook 'my-app', github: 'RiotGames/my-app'cookbook 'some-dependency', github: 'RiotGames/some-dependency'It is strongly suggested that you avoid managing all of your dependencies through Git and instead rely on the second example I have given you. Instead upload those cookbooks into your Chef Server and allow the chef_api default source to find them.On Wednesday, May 22, 2013 at 6:32 AM, Mark Pimentel wrote:
If I specify a git location without a branch and the metadata.rb specifies the version required, does berkshelf pull master and check the version in that dependencies' metadata?If I want to pull a specific tag, I understand you would have to specify branch: "1.0.0" in berks but then also in metadata? That seems somewhat redundant.Am I missing something?--
Thanks,
Mark
Archive powered by MHonArc 2.6.16.