Skip to content

Commit

Permalink
updated the chef package link
Browse files Browse the repository at this point in the history
Signed-off-by: Dishank Tiwari <[email protected]>
  • Loading branch information
dishanktiwari2501 committed Oct 9, 2024
1 parent 7a63309 commit 1757f27
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion content/api_omnitruck.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ to return something like:
```plain
sha1 3fe8e8a2f443675f9b82e876cdac8200104451f2
sha256 9f1c1a2c0b1f4e8494664386437bf32f0cb5cbfbd4cb9d23e327767fc65581dc
url https://packages.chef.io/files/stable/chef/17.7.29/ubuntu/20.04/chef_17.7.29-1_amd64.deb
url https://chefdownload-commercial.chef.io/files/stable/chef/17.7.29/ubuntu/20.04/chef_17.7.29-1_amd64.deb
version 17.7.29
```

Expand Down
2 changes: 1 addition & 1 deletion content/azure_chef_cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ The following examples show how Chef Infra Client can be installed and configure
"validation_client_name": "my-chef-organization-validator"
},
"runlist": "recipe[awesome_customers_windows],recipe[iis],role[windows_base]",
"chef_package_url" : "https://my.packages.chef.io/chef-client-15.11.8-1-x64.msi",
"chef_package_url" : "https://my.chefdownload-commercial.chef.io/chef-client-15.11.8-1-x64.msi",
"validation_key_format": "plaintext"
},
"protectedSettings": {
Expand Down
6 changes: 3 additions & 3 deletions content/install_bootstrap.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ The `knife bootstrap` subcommand is used to run a bootstrap operation that insta
[172.16.1.233] trying wget...
[172.16.1.233] sha1 8d89f8ac2e7f52d170be8ec1c2a028a6449d7e3a
sha256 85cc73bed06e8d6699fc5c0b26c20d2837bf03831873444febccfc8bfa561f00
url https://packages.chef.io/files/stable/chef/16.1.16/ubuntu/20.04/chef_16.1.16-1_arm64.deb
url https://chefdownload-commercial.chef.io/files/stable/chef/16.1.16/ubuntu/20.04/chef_16.1.16-1_arm64.deb
version 16.1.16
[172.16.1.233]
[172.16.1.233] downloaded metadata file looks valid...
[172.16.1.233] downloading https://packages.chef.io/files/stable/chef/16.1.16/ubuntu/20.04/chef_16.1.16-1_arm64.deb
[172.16.1.233] downloading https://chefdownload-commercial.chef.io/files/stable/chef/16.1.16/ubuntu/20.04/chef_16.1.16-1_arm64.deb
to file /tmp/install.sh.1628/chef_16.1.16-1_arm64.deb
[172.16.1.233] trying wget...
[172.16.1.233] Comparing checksum with sha256sum...
Expand Down Expand Up @@ -373,7 +373,7 @@ $file = "C:\Windows\System32\drivers\etc\hosts"
$hosts | Add-Content $file
## Download the Chef Infra Client
$clientURL = "https://packages.chef.io/files/stable/chef/12.19.36/windows/2012/chef-client-<version-here>.msi"
$clientURL = "https://chefdownload-commercial.chef.io/files/stable/chef/12.19.36/windows/2012/chef-client-<version-here>.msi"
$clientDestination = "C:\chef-client.msi"
Invoke-WebRequest $clientURL -OutFile $clientDestination
Expand Down
2 changes: 1 addition & 1 deletion content/install_chef_air_gap.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ group.

By default, `knife bootstrap` uses the `chef-full` template to bootstrap
a node. This template contains a number of useful features, but it also
attempts to pull an installation script from `packages.chef.io`. In
attempts to pull an installation script from `chefdownload-commercial.chef.io`. In

Check failure on line 133 in content/install_chef_air_gap.md

View workflow job for this annotation

GitHub Actions / cspell-action

Unknown word (chefdownload)
this section, you'll copy the contents of the `chef-full` template to a
custom template, and then modify the package and Ruby gem sources.
Expand Down
10 changes: 5 additions & 5 deletions content/packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The `stable` and `current` release channels support the following package reposi
- APT (Debian and Ubuntu platforms)
- Yum (Enterprise Linux platforms)

You can download Chef Software's GPG public key from [packages.chef.io](https://packages.chef.io/chef.asc).
You can download Chef Software's GPG public key from [chefdownload-commercial.chef.io](https://chefdownload-commercial.chef.io/chef.asc).

Check failure on line 29 in content/packages.md

View workflow job for this annotation

GitHub Actions / cspell-action

Unknown word (chefdownload)

### Debian / Ubuntu

Expand All @@ -41,13 +41,13 @@ To set up an APT package repository for Debian and Ubuntu platforms:
1. Install the public key for Chef Software:

```bash
wget -qO - https://packages.chef.io/chef.asc | sudo apt-key add -
wget -qO - https://chefdownload-commercial.chef.io/chef.asc | sudo apt-key add -
```

1. Create the APT repository source file:

```bash
echo "deb https://packages.chef.io/repos/apt/<CHANNEL> <DISTRIBUTION> main" > chef-<CHANNEL>.list
echo "deb https://chefdownload-commercial.chef.io/repos/apt/<CHANNEL> <DISTRIBUTION> main" > chef-<CHANNEL>.list
```

Replace:
Expand Down Expand Up @@ -80,7 +80,7 @@ To set up a Yum package repository for Enterprise Linux platforms:
1. Install the public key for Chef Software:

```bash
sudo rpm --import https://packages.chef.io/chef.asc
sudo rpm --import https://chefdownload-commercial.chef.io/chef.asc
```

1. Create the Yum repository source file:
Expand All @@ -89,7 +89,7 @@ To set up a Yum package repository for Enterprise Linux platforms:
cat >chef-<CHANNEL>.repo <<EOL
[chef-<CHANNEL>]
name=chef-<CHANNEL>
baseurl=https://packages.chef.io/repos/yum/<CHANNEL>/el/<VERSION>/\$basearch/
baseurl=https://chefdownload-commercial.chef.io/repos/yum/<CHANNEL>/el/<VERSION>/\$basearch/
gpgcheck=1
# No auto-upgrade, as there are manual steps needed for Chef Infra Server upgrades
enabled=0
Expand Down
2 changes: 1 addition & 1 deletion content/reusable/md/automate_integration_aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ When running in EC2, AWS has the ability to use the IAM role associated with you

The `ssm` Scan Job:

1. Installs the latest stable InSpec from `packages.chef.io`
1. Installs the latest stable InSpec from `chefdownload-commercial.chef.io`

Check failure on line 110 in content/reusable/md/automate_integration_aws.md

View workflow job for this annotation

GitHub Actions / cspell-action

Unknown word (chefdownload)
1. Executes InSpec locally, providing InSpec with the `fqdn` of Chef Automate and a data collector token, so each instance reports directly back to Chef Automate

Your Automate instance must be reachable (open to incoming traffic) from the instances being scanned in order for the SSM scanning to work. You can filter the instances to be scanned by specifying tag key/value matches or regions.
Expand Down

0 comments on commit 1757f27

Please sign in to comment.