Skip to main content

Chef Infra Agentless Mode

Agentless Mode executes Chef Infra Client runs on nodes that don’t have Chef Infra Client installed on them.

The target node can be any remote system, edge device, or cloud resource that the host can reach. This includes edge devices, Wi-Fi routers, switches, relays, cloud resources, IP phones, router hubs, and network management peripherals.

Transport Interface (Train)

Agentless Mode uses Transport Interface (Train) to connect to nodes and execute Chef Infra Client runs.

Agentless Mode supports the SSH Train protocol. The other Train protocols are experimental.

Requirements

Agentless Mode has the following requirements:

  • A network-enabled system to execute Agentless Mode.
  • The chef-client CLI. This is included with Chef Workstation.
  • A credentials file that provides the system with information to connect to a target node.
  • A recipe that only includes Agentless Mode-enabled resources.

Credentials file

The credentials file defines the SSH connection settings for each node in TOML format.

Create a credentials file on the computer running Chef Workstation in ~/.chef/credentials.

Define node connections

Define connection settings for each node with an inline table. For example, this adds credentials for three nodes:

['HOST-1']
host = 'target.system.host.1.com'
user = 'root'
key_files = '~/.keys/key-pair.pem'

['HOST-2']
host = 'target.system.host.2.com'
user = 'root'
password = '123456'

['192.168.0.252']
host = '192.168.0.252'
user = 'root'
password = '123456'

transport_protocol = 'ssh'

The following example includes all possible connection options for a single node:

# Set <TARGET_NAME> to a name for the target node. This could be the node IP address or FQDN.
['<TARGET_NAME>']

# ==== Target node connection settings ====
# host: The IP address or FQDN of a node. (Required)
# port: The port number of a node. Default is '22'
# ====

host = '<IP_ADDRESS OR FQDN>'
# port = '22'

# ==== User authentication settings ====
# user: The user used to connect to and execute Cookbooks on a node. Default is "root".
# key_files: If connecting with a secret key, the path to a secret key used to connect to a node.
# password: If connecting with a password, the password string to connect to a node.
# ====

# user = 'root'
# key_files = '<PATH_TO_SECRET_FILE>'
# password = '<PASSWORD_STRING>'

# ==== Bastion host settings ====
# bastion_host: A bastion host to connect to the target through. Default is 'nil'.
# bastion_user: The bastion host user. Default is 'root'.
# bastion_port: The port to connect to the bastion host. Default is '22'.
# ====

# bastion_host = 'nil'
# bastion_user = 'root'
# bastion_port = '22'

# verify_host_key: Whether to verify the host key. Default is false
# verify_host_key = false

# forward_agent: Whether the connection to the authentication agent (if any) will be forwarded to the remote machine. Default is false.
# forward_agent = false

# transport_protocol: The protocol to use to connect to a node. Define this once for all nodes in the credentials file. Set to 'ssh'. (Required)
transport_protocol = 'ssh'

Node connection parameters

Agentless Mode supports the following SSH connection parameters in a credentials file.

Common parameters:

host
(Required) The IP address or FQDN of a node.
port
The port number of a node.

Default value: 22

user
The user used to connect to and execute Cookbooks on a node. For example, root.

Default value: root

key_files
If connecting with a secret key, the path to a secret key used to connect to a node.
password
If connecting with a password, the password string to connect to a node.
transport_protocol
(Required) The protocol to use to connect to a node. Define this once for all nodes in the credentials file. Set to ssh.

Additional parameters:

bastion_host
A bastion host to connect to the target through.

Default value: nil

bastion_port
A bastion host port.

Default value: 22

bastion_user
A bastion host user.

Default value: "root"

forward_agent
Whether the connection to the authentication agent (if any) is forwarded to the remote machine.

Default value: false

verify_host_key
Whether to verify the host key.

Allowed values: true, false. Default value: false

Resources

All resources included in a Cookbook must be enabled in Agentless Mode to run in Agentless Mode.

See the list of built-in Chef Infra resources that are supported in Agentless Mode.

Custom resources

To enable a custom resource to run in Agentless Mode, add target_mode: true to the resource definition. For example:

provides :resource_name, target_mode: true
...

For documentation on updating custom resources, see the RC2 custom resources documentation. For general guidelines on writing a custom resource, see the custom resources documentation.

Example

The following custom resource example runs in Agentless Mode and updates the content of a file defined by the path property.

# Create a new resource that's available in Target Mode
provides :file_update, target_mode: true

property :path, String, name_property: true
property :content, String, default: ""

default_action :update

load_current_value do |new_resource|
  # Prefix any IO calls with ::TargetIO to use the IO abstraction
  if ::TargetIO::File.exist?(new_resource.path)
    content ::TargetIO::IO.read(new_resource.path)
  end
end

action :update do
  converge_if_changed :content do
    TargetIO.write(new_resource.path, new_resource.content)
    # You can also use shell_out() here without any prefix
  end
end

Run Agentless Mode

Run the chef-client executable using -t or --target to target a specific node. For example:

chef-client -t <TARGET_NAME>

Replace <TARGET_NAME> with the name of the host as defined in the credentials file. For example, HOST-1 in the credential file example.

To execute a specific Cookbook in Agentless Mode, run:

chef-client -t <TARGET_NAME> <PATH/TO/COOKBOOK/COOKBOOK_NAME>

Replace the following:

  • <TARGET_NAME> with the name of the host as defined in the credentials file.
  • <PATH/TO/COOKBOOK/COOKBOOK_NAME> with the path to the Cookbook on your system. For example, /chef-repo/cookbooks/example_cookbook.rb

Agentless Mode in Local Mode

You can run Agentless Mode in Local Mode. Local Mode runs chef-zero locally as a lightweight instance of Chef Infra Server to execute a Client run on target nodes.

Use -z and -t to run Agentless Mode in Local Mode:

chef-client -z -t <TARGET_NAME>

Replace <TARGET_NAME> with the name of the host as defined in the credentials file. For example, HOST-1 in the credential file example.

Run Agentless Mode with Chef Automate or Chef Infra Server

You can configure Chef Automate or Chef Infra Server to run Agentless Mode on a regular schedule.

Agentless Mode doesn’t have a way to schedule Chef Infra Client runs on a node, but you can create a cron file that executes Agentless Mode on a regular schedule.

For example, this creates a cron file that executes Agentless Mode every thirty minutes:

cat > /etc/cron.d/nodename.cron <<EOF
PATH="/opt/chefdk/bin:/opt/chefdk/embedded/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
GEM_ROOT="/opt/chefdk/embedded/lib/ruby/gems/2.6.0"

0,30 * * * * * chef-runner /usr/bin/chef-client -t <TARGET_NAME>
EOF

After the cron file is created, your node appears in Chef Infra Server or Chef Automate just like a regular node.

Note

Use splay to reduce the load on a server that’s executing many Client runs. You could use the RANDOM_DELAY variable (if your cron implementation features it) or set a random sleep offset as a prefix to your command. For example, with Ubuntu’s num-utils package: sleep $(numrandom 0..30)m.

Troubleshooting

The following are the common errors and their potential troubleshooting steps.

chef-client execute error

Verify that the target node’s hostname or IP address is correct, that the host is accessible using SSH, and that the user and password specified in the credentials file are correct.

Custom resources don’t execute

Verify that all resources have target_mode set to true. For example:

provides :<RESOURCE_NAME>, target_mode: true

For more information, see the custom resource example.

Ohai data doesn’t report data from the target

Verify that Ohai can report data back by targeting the node:

ohai --target ssh://foobar.example.org/

Network latency can affect the ability of nodes to report data to Chef Infra Server.

If Ohai reports some data but not other data, it’s a case of network latency. Upgrade your infrastructure and network speed to receive all data as it’s generated.

Thank you for your feedback!

×