Reader small image

You're reading from  Mastering Chef

Product typeBook
Published inJun 2015
Reading LevelIntermediate
Publisher
ISBN-139781783981564
Edition1st Edition
Languages
Tools
Right arrow
Author (1)
Mayank Joshi
Mayank Joshi
author image
Mayank Joshi

Mayank Joshi works for Indix as a DevOps engineer. He has worn many hats during his 10-year long career. He has been a developer, a systems analyst, a systems administrator, a software consultant, and for the past 6 years, he has been fascinated with the phenomenal growth witnessed in cloud environments and the challenges of automation associated with the hosting of the infrastructure in such environments. Prior to Indix, he worked for start-ups such as SlideShare, R&D organizations such as CDAC, and even had a stint at a highly automated chemical plant of IFFCO.
Read more about Mayank Joshi

Right arrow

Setting up an environment on a node


Once environments have been created, we will need to ensure that the nodes are correctly associated with the environments. Again, as with the management of environments, there are multiple ways to associate a node with an environment.

Using Knife

We can make use of the knife node command with the environment_set argument to set the environment for a node without editing the node object:

$ knife node environment_set node01 production

This will set the environment for node01 as production. The next time chef-client executes on the node, it'll apply the configuration corresponding to the production environment on node01.

We can also edit the node object itself and set the chef_environment property with the required environment name as follows:

$ knife node edit node01

This will open up the corresponding node01 object's JSON in the text editor. Add/edit the chef_environment property with the right environment name and save the file to apply the changes:

{
   ...
lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Mastering Chef
Published in: Jun 2015Publisher: ISBN-13: 9781783981564

Author (1)

author image
Mayank Joshi

Mayank Joshi works for Indix as a DevOps engineer. He has worn many hats during his 10-year long career. He has been a developer, a systems analyst, a systems administrator, a software consultant, and for the past 6 years, he has been fascinated with the phenomenal growth witnessed in cloud environments and the challenges of automation associated with the hosting of the infrastructure in such environments. Prior to Indix, he worked for start-ups such as SlideShare, R&D organizations such as CDAC, and even had a stint at a highly automated chemical plant of IFFCO.
Read more about Mayank Joshi