Skip to content

feat: add provisioner chart to release and docs #9050

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 16, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
spell out PSK first time per section
Co-authored-by: Cian Johnston <cian@coder.com>
  • Loading branch information
spikecurtis and johnstcn authored Aug 15, 2023
commit df8c6a9e2d5cb7f2eb4a4b9de4003c93e6e18274
4 changes: 2 additions & 2 deletions docs/admin/provisioners.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Provisioners are started with the [coder provisionerd start](../cli/provisionerd

The provisioner daemon must authenticate with your Coder deployment.

Set a [provisioner daemon PSK](../cli/server.md#--provisioner-daemon-psk) on the Coder server and start the provisioner with
Set a [provisioner daemon pre-shared key (PSK)](../cli/server.md#--provisioner-daemon-psk) on the Coder server and start the provisioner with
`coder provisionerd start --psk <your-psk>`. If you are [installing with Helm](../install/kubernetes#install-coder-with-helm),
see the [Helm example](#example-running-an-external-provisioner-with-helm) below.

Expand Down Expand Up @@ -71,7 +71,7 @@ see the [Helm example](#example-running-an-external-provisioner-with-helm) below
Coder provides a Helm chart for running external provisioner daemons, which you will use in concert with the Helm chart
for deploying the Coder server.

1. Create a long, random PSK and store it in a Kubernetes secret
1. Create a long, random pre-shared key (PSK) and store it in a Kubernetes secret

```shell
kubectl create secret generic coder-provisioner-psk --from-literal=psk=`head /dev/urandom | tr -dc A-Za-z0-9 | head -c 26`
Expand Down