Skip to content

Commit 5f05eeb

Browse files
fix(tuto): chef2
1 parent 93dfa5b commit 5f05eeb

File tree

1 file changed

+7
-7
lines changed
  • tutorials/configure-chef-ubuntu-xenial

1 file changed

+7
-7
lines changed

tutorials/configure-chef-ubuntu-xenial/index.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You can easily manage up to 10,000 nodes using Chef. Chef also makes it easy to
2424
- A Scaleway account logged into the [console](https://console.scaleway.com)
2525
- [Owner](/iam/concepts/#owner) status or [IAM permissions](/iam/concepts/#permission) allowing you to perform actions in the intended Organization
2626
- An [SSH key](/organizations-and-projects/how-to/create-ssh-key/)
27-
- One of the following remote machines running Ubuntu (this tutorial was validated for machines running Ubuntu Xenial or Ubuntu Focal Fossa):
27+
- One of the following remote machines running Ubuntu (this tutorial was validated for machines running Ubuntu 24.04 or previous:
2828
- An [Instance](/instances/how-to/create-an-instance/)
2929
- An [Elastic Metal server](/elastic-metal/how-to/create-server/)
3030
- A [Dedibox dedicated server](/dedibox/how-to/order-a-server/)
@@ -307,18 +307,18 @@ This is done through a `knife.rb` file that we will place in the `~/chef_repo/.c
307307
log_location STDOUT
308308
node_name "name_for_workstation"
309309
client_key "#{current_dir}/name_of_user_key"
310-
validation_client_name "organization_validator_name"
310+
validation_client_name "organization-validator"
311311
validation_key "#{current_dir}/organization_validator_key"
312312
chef_server_url "https://server_domain_or_public_IP/organizations/organization_name"
313313
syntax_check_cache_path "#{ENV['HOME']}/.chef/syntaxcache"
314314
cookbook_path ["#{current_dir}/../cookbooks"]
315315
```
316316

317-
- **node_name:** Specifies the name that knife will use to connect to your Chef server. This should match your username.
318-
- **client_key:** Name and path to the user key that you copied over from the Chef server. We can use the `#{current_dir}` snippet to fill in the path if the key is in the same directory as the `knife.rb` file.
319-
- **validation_client_name:** Name of the validation client that knife will use to bootstrap new nodes. This will take the form of your organization short name, followed by `-validator`.
320-
- **validation_key:** Like the `client_key`, this includes the name and path to the validation key you copied from the Chef server. Again, you can use the `#{current_dir}`.
321-
- **chef_server_url:** This is the URL where the Chef server can be reached. It should begin with `https://`, followed by your Chef server's domain name or **Public IP address**. Afterward, the path to your organization should be specified by appending /organizations/your_organization_name.
317+
- `node_name` - Specifies the name that knife will use to connect to your Chef server. This should match your username.
318+
- `client_key` - Name and path to the user key that you copied over from the Chef server. We can use the `#{current_dir}` snippet to fill in the path if the key is in the same directory as the `knife.rb` file.
319+
- `validation_client_name` - Name of the validation client that knife will use to bootstrap new nodes. This will take the form of your organization short name, followed by `-validator`.
320+
- `validation_key` - Like the `client_key`, this includes the name and path to the validation key you copied from the Chef server. Again, you can use the `#{current_dir}`.
321+
- `chef_server_url` - This is the URL where the Chef server can be reached. It should begin with `https://`, followed by your Chef server's domain name or **Public IP address**. Afterward, the path to your organization should be specified by appending /organizations/your_organization_name.
322322

323323
For our tutorial, the file looks like this:
324324

0 commit comments

Comments
 (0)