There is no single config file for this. You use the key "chef_environment" in each node's JSON data. Environments are mostly moot in chef-solo, nothing they do can't be done in a roughly equivalent way with roles, so its pretty much the same either way.
On Mar 17, 2014, at 8:34 AM, Venkat Chowdhary <
" href="mailto:
">
> wrote:
> Thanks Jeff, Your help is highly appreciable.
>
> Yes, its better
if we can able to manage it through a config file. I am still searching how to do using config file.
>
> Thanks & Regards
> Venkat
>
>
> On Monday, 17 March 2014 8:51 PM, Jeff Byrnes <
" href="mailto:
">
> wrote:
> The environment is set when converging the node. With a Chef Server, you’d set it on the initial bootstrap, and it would stick moving forward from there.
>
> With chef-solo, you run the chef-solo command on each particular instance. You’ll need to either specify a config file that provides the values for the particular node you’re bootstrapping, or set the environment directly in the chef-solo command using the environment flag (-E or --environment).
>
> E.g., sudo chef-solo -E prod -N my-new-node -o role[my-new-role]
>
> Might need some quotes in there, but that’s kind of the idea. Others might have more experience in this realm, however.
>
> See the docs on Chef Solo, specifically here:
http://docs.opscode.com/chef_solo.html#chef-solo-executable for full details on the arguments it takes.
>
> It’d probably be easier to deploy a config file particular to each node as part of your deployment process, and tell Chef Solo to read that config file, instead of specifying things in the command itself. E.g., sudo chef-solo -c ~/chef/solo.rb
> --
> Jeff Byrnes
> @berkleebassist
> Operations Engineer
> EverTrue
> 704.516.4628
>
> On March 17, 2014 at 11:13:37 AM, Venkat Chowdhary (
" href="mailto:
">
) wrote:
> Hi
>
> I am using chef-solo. I am creating environments (dev.json) manually like below:
>
> {
> "name": "dev",
> "description": "Development Environment",
> "cookbook_versions": {
> },
> "json_class": "Chef::Environment",
> "chef_type": "environment",
> "default_attributes": {
> },
> "override_attributes": {
> }
> }
>
> Could you please help me how to add nodes to different environments like (dev, staging, production etc ...)
>
> Your help is highly appreciable.
>
> Thanks in advance.
>
> Thanks & Regards
> Venkat
>
>