A node is any physical, virtual, or cloud device that is configured and maintained by an instance of Chef Infra Client. Bootstrapping installs Chef Infra Client on a target system so that it can run as a client and sets the node up to communicate with a Chef Infra Server. There are two ways to do this:
knife bootstrap command from a workstation.Use the knife bootstrap subcommand to run a bootstrap operation that installs Chef Infra Client on the target system. The bootstrap operation must specify the IP address or FQDN of the target system.
Considerations:
~/.chef/client.d directory on your local workstation to the client.d directory on the device being bootstrapped with the knife bootstrap command. You can also set the client_d_dir option in the config.rb file to point to an arbitrary directory instead of ~/.chef/client.d, and the contents of that directory will be copied to the device being bootstrapped. All config files inside the client.d directory will get copied into the /etc/chef/client.d directory on the system being bootstrapped./trusted_certs_dir directory on your local workstation automatically by running knife ssl fetch. These certificates are used during knife operations to communicate with the Chef Infra Server.knife bootstrap will attempt to use ssh to connect to the target node. Use the -o to specify a different protocol, such as winrm for windows nodes.This subcommand has the following syntax:
knife bootstrap FQDN_or_IP_ADDRESS (options)
Note
-U USERNAME, --connection-user USERNAME
Authenticate to the target host with this user account.
-P PASSWORD, --connection-password PASSWORD
Authenticate to the target host with this password."
-p PORT, --connection-port PORT
The port on the target node to connect to."
-o PROTOCOL, --connection-protocol PROTOCOL
The protocol to use to connect to the target node. Options are ssh or winrm. ssh is default.
-W SECONDS, --max-wait SECONDS
The maximum time to wait for the initial connection to be established.
--session-timeout SECONDSThe number of seconds to wait for each connection operation to be acknowledged while running bootstrap.
--winrm-ssl-peer-fingerprint FINGERPRINTSSL certificate fingerprint expected from the target.
-f CA_TRUST_PATH, --ca-trust-file CA_TRUST_PATH
The Certificate Authority (CA) trust file used for SSL transport
--winrm-no-verify-certDo not verify the SSL certificate of the target node for WinRM.
--winrm-sslUse SSL in the WinRM connection.
-w AUTH-METHOD, --winrm-auth-method AUTH-METHOD
The WinRM authentication method to use.
--winrm-basic-auth-onlyFor WinRM basic authentication when using the ‘ssl’ auth method.
-R KERBEROS_REALM, --kerberos-realm KERBEROS_REALM
The Kerberos realm used for authentication.
-S KERBEROS_SERVICE, --kerberos-service KERBEROS_SERVICE
The Kerberos service used for authentication.
-G GATEWAY, --ssh-gateway GATEWAY
The SSH tunnel or gateway that is used to run a bootstrap action on a machine that is not accessible from the workstation.
--ssh-gateway-identity SSH_GATEWAY_IDENTITYThe SSH identity file used for gateway authentication.
-A, --ssh-forward-agent
Enable SSH agent forwarding.
-i IDENTITY_FILE, --ssh-identity-file IDENTITY_FILE
The SSH identity file used for authentication. Key-based authentication is recommended.
ssh_verify_host_key, --ssh-verify-host-key VALUE
Verify host key. Default is ‘always’
--bootstrap-version VERSIONThe version of Chef Infra Client to install.
--bootstrap-install-command COMMANDExecute a custom installation command sequence for Chef Infra Client. This option may not be used in the same command with --bootstrap-curl-options or --bootstrap-wget-options.
--bootstrap-curl-options OPTIONSArbitrary options to be added to the bootstrap command when using cURL. This option may not be used in the same command with --bootstrap-install-command.
--bootstrap-wget-options OPTIONSArbitrary options to be added to the bootstrap command when using GNU Wget. This option may not be used in the same command with --bootstrap-install-command.
--bootstrap-preinstall-command COMMANDSCustom commands to run before installing Chef Infra Client
--bootstrap-url URLThe URL to a custom installation script.
-m URL, --msi-url URL
Location of the Chef Infra Client MSI. The default templates will prefer to download from this location. The MSI will be downloaded from chef.io if not provided.
--sudoExecute a bootstrap operation with sudo.
--sudo-preserve-homeUse to preserve the non-root user’s HOME environment.
--use-sudo-passwordPerform a bootstrap operation with sudo; specify the password with the -P (or --ssh-password) option.
-t TEMPLATE, --bootstrap-template TEMPLATE
The bootstrap template to use. This may be the name of a bootstrap template—chef-full for example—or it may be the full path to an Embedded Ruby (ERB) template that defines a custom bootstrap. Default value: chef-full, which installs Chef Infra Client using the Chef Infra installer on all supported platforms.
--bootstrap-no-proxy NO_PROXY_URL_or_IPA URL or IP address that specifies a location that should not be proxied during the bootstrap.
--bootstrap-proxy PROXY_URLThe proxy server for the node that is the target of a bootstrap operation.
--bootstrap-proxy-pass PROXY_PASSThe proxy authentication password for the node being bootstrapped.
--bootstrap-proxy-user PROXY_USERThe proxy authentication username for the node being bootstrapped.
-N NAME, --node-name NAME
The unique identifier of the node.
Note
-E ENVIRONMENT, --environment ENVIRONMENT
The name of the environment to be applied.
-r RUN_LIST, --run-list RUN_LIST
A comma-separated list of roles and/or recipes to be applied.
--secret SECRETThe encryption key that is used for values contained within a data bag item.
--secret-file FILEThe path to the file that contains the encryption key.
--hint HINT_NAME[=HINT_FILE]An Ohai hint to be set on the bootstrap target. See the Ohai documentation for more information. HINT_FILE is the name of the JSON file. HINT_NAME is the name of a hint in a JSON file. Use multiple --hint options to specify multiple hints.
-j JSON_ATTRIBS, --json-attributes JSON_ATTRIBS
A JSON string that is added to the first run of a Chef Infra Client.
--json-attribute-file FILEA JSON file to be added to the first run of Chef Infra Client.
--[no-]fipsAllows OpenSSL to enforce FIPS-validated security during Chef Infra Client runs.
--policy-group POLICY_GROUPThe name of a policy group that exists on the Chef Infra Server.
--policy-name POLICY_NAMEThe name of a policy, as identified by the name setting in a Policyfile.rb file.
--bootstrap-vault-file VAULT_FILEThe path to a JSON file that contains a list of vaults and items to be updated.
--bootstrap-vault-item VAULT_ITEMA single vault and item to update as vault:item.
--bootstrap-vault-json VAULT_JSONA JSON string that contains a list of vaults and items to be updated. –bootstrap-vault-json ‘{ “vault1”: [“item1”, “item2”], “vault2”: “item2” }’
--[no-]host-key-verifyUse --no-host-key-verify to disable host key verification. Default setting: --host-key-verify.
--[no-]node-verify-api-certVerify the SSL certificate on the Chef Infra Server. When true, Chef Infra Client always verifies the SSL certificate. When false, Chef Infra Client uses the value of ssl_verify_mode to determine if the SSL certificate requires verification. If this option is not specified, the setting for verify_api_cert in the configuration file is applied.
--node-ssl-verify-mode MODESet the verify mode for HTTPS requests. Options: none or peer.
Use none to do no validation of SSL certificates.
Use peer to do validation of all SSL certificates, including the Chef Infra Server connections, S3 connections, and any HTTPS remote_file resource URLs used in a Chef Infra Client run. This is the recommended setting.
-V -VRun the initial Chef Infra Client run at the debug log-level (e.g. chef-client -l debug).
-V -V -VRun the initial Chef Infra Client run at the trace log-level (e.g. chef-client -l trace).
Note
The ORGANIZATION-validator.pem is typically added to the .chef directory on the workstation. When a node is bootstrapped from that workstation, the ORGANIZATION-validator.pem is used to authenticate the newly-created node to the Chef Infra Server during the initial Chef Infra Client run. It is possible to bootstrap a node using the USER.pem file instead of the ORGANIZATION-validator.pem file. This is known as a “validatorless bootstrap”.
To create a node via the USER.pem file, simply delete the ORGANIZATION-validator.pem file on the workstation. For example:
rm -f /home/lamont/.chef/myorg-validator.pem
and then make the following changes in the config.rb file:
validation_client_name settingvalidation_key setting to be something that isn’t a path to an existent ORGANIZATION-validator.pem file. For example: /nonexist.As long as a USER.pem is also present on the workstation from which the validatorless bootstrap operation will be initiated, the bootstrap operation will run and will use the USER.pem file instead of the ORGANIZATION-validator.pem file.
When running a validatorless knife bootstrap operation, the output is similar to:
desktop% knife bootstrap 10.1.1.1 -N foo01.acme.org \
-E dev -r 'role[base]' -j '{ "foo": "bar" }' \
--ssh-user vagrant --sudo
Node foo01.acme.org exists, overwrite it? (Y/N)
Client foo01.acme.org exists, overwrite it? (Y/N)
Creating new client for foo01.acme.org
Creating new node for foo01.acme.org
Connecting to 10.1.1.1
10.1.1.1 Starting first Chef Client run...
[....etc...]
Note
--node-name option is required for a validatorless bootstrap. Federal Information Processing Standards (FIPS) is a United States government computer security standard that specifies security requirements for cryptography. The current version of the standard is FIPS 140-2. Chef Infra Client can be configured to allow OpenSSL to enforce FIPS-validated security during a Chef Infra Client run. This will disable cryptography that is explicitly disallowed in FIPS-validated software, including certain ciphers and hashing algorithms. Any attempt to use any disallowed cryptography will cause Chef Infra Client to throw an exception during a Chef Infra Client run.
Note
Chef uses MD5 hashes to uniquely identify files that are stored on the Chef Infra Server. MD5 is used only to generate a unique hash identifier and is not used for any cryptographic purpose.
Notes about FIPS:
Bootstrap a node using FIPS
knife bootstrap 192.0.2.0 -P vanilla -x root -r 'recipe[apt],recipe[xfs],recipe[vim]' --fips
which shows something similar to:
OpenSSL FIPS 140 mode enabled
...
192.0.2.0 Chef Infra Client finished, 12/12 resources updated in 78.942455583 seconds
The default chef-full template uses the Chef installer. For most bootstrap operations, regardless of the platform on which the target node is running, using the chef-full distribution is the best approach for installing Chef Infra Client on a target node. In some situations, a custom template may be required.
For example, the default bootstrap operation relies on an Internet connection to get the distribution to the target node. If a target node cannot access the Internet, then a custom template can be used to define a specific location for the distribution so that the target node may access it during the bootstrap operation. The example below will show you how to create a bootstrap template that uses a custom artifact store for Chef packages and installation scripts, as well as a RubyGem mirror:
A custom bootstrap template file must be located in a bootstrap/ directory, which is typically located within the ~/.chef/ directory on the local workstation. Navigate to the .chef directory, and create a bootstrap directory within it:
mkdir bootstrap
Move to the bootstrap directory and create a blank template file; this example will use template.erb for the template name:
touch template.erb
Still in the bootstrap directory, issue the following command to copy the chef-full configuration to your new template:
find /opt/chef-workstation/embedded/lib/ruby -type f -name chef-full.erb -exec cat {} \; > template.erb
This command searches for the chef-full template file under /opt/chef-workstation/embedded/lib/ruby, and then outputs the contents of the file to template.erb. If you used a different template file name, be sure to replace template.erb with the template file you created during the last step.
Update template.erb to replace omnitruck.chef.io with the URL of an install.sh script on your artifact store:
install_sh="<%= knife_config[:bootstrap_url] ? knife_config[:bootstrap_url] : "http://packages.example.com/install.sh" %>"
Still in your text editor, locate the following line near the bottom of your template.erb file:
cat > /etc/chef/client.rb <<'EOP'
<%= config_content %>
EOP
Beneath it, add the following, replacing gems.example.com with the URL of your gem mirror:
cat >> /etc/chef/client.rb <<'EOP'
rubygems_url "http://gems.example.com"
EOP
This appends the appropriate rubygems_url setting to the /etc/chef/client.rb file that is created during bootstrap, which ensures that your nodes use your internal gem mirror.
You can use the --bootstrap-template option with the knife bootstrap subcommand to specify the name of your bootstrap template file:
knife bootstrap 123.456.7.8 -x username -P password --sudo --bootstrap-template "template"
Alternatively, you can use the knife[:bootstrap_template] option within config.rb to specify the template that knife bootstrap will use by default when bootstrapping a node. It should point to your custom template within the bootstrap directory:
knife[:bootstrap_template] = "#{current_dir}/bootstrap/template.erb"
The following examples show how to use this knife subcommand:
Bootstrap a node
knife bootstrap 192.0.2.0 -P vanilla -x root -r 'recipe[apt],recipe[xfs],recipe[vim]'
which shows something similar to:
...
192.0.2.0 Chef Infra Client finished, 12/12 resources updated in 78.942455583 seconds
Use knife node show to verify:
knife node show debian-buster.int.domain.org
which returns something similar to:
Node Name: debian-buster.int.domain.org
Environment: _default
FQDN: debian-buster.int.domain.org
IP: 192.0.2.0
Run List: recipe[apt], recipe[xfs], recipe[vim]
Roles:
Recipes: apt, xfs, vim, apt::default, xfs::default, vim::default
Platform: debian 10.0
Tags:
Use an SSH password
knife bootstrap 192.0.2.0 -x username -P PASSWORD --sudo
Use a file that contains a private key
knife bootstrap 192.0.2.0 -x username -i ~/.ssh/id_rsa --sudo
Specify options when using cURL
knife bootstrap --bootstrap-curl-options "--proxy http://myproxy.com:8080"
Specify options when using GNU Wget
knife bootstrap --bootstrap-wget-options "-e use_proxy=yes -e http://myproxy.com:8080"
Specify a custom installation command sequence
knife bootstrap --bootstrap-install-command "curl -l http://mycustomserver.com/custom_install_chef_script.sh | sudo bash -s --"
Bootstrap a Windows node via WinRM using a run list and environment
knife bootstrap -o winrm 123.456.7.8 -U username -P 'PASSWORD' --node-name NODE_NAME --run-list 'recipe[cookbook]' -E ENV_NAME
Bootstrap a Windows node via WinRM using a policyfile and policy group
knife bootstrap -o winrm 123.456.7.8 -U username -P 'PASSWORD' --node-name NODE_NAME --policy-name PF_NAME --policy-group PG_NAME
Bootstrap Windows node with shorthand syntax
knife bootstrap winrm://username:[email protected] --run-list 'recipe[cookbook]' -E ENV_NAME
© Chef Software, Inc.
Licensed under the Creative Commons Attribution 3.0 Unported License.
The Chef™ Mark and Chef Logo are either registered trademarks/service marks or trademarks/servicemarks of Chef, in the United States and other countries and are used with Chef Inc's permission.
We are not affiliated with, endorsed or sponsored by Chef Inc.
https://docs.chef.io/knife_bootstrap/