Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore(docs): update external provisioners helm docs #15155

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 4 commits into from
Oct 23, 2024
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
Apply suggestions from code review
Co-authored-by: Edward Angert <[email protected]>
  • Loading branch information
johnstcn and EdwardAngert authored Oct 22, 2024
commit 46d62caec7259169b4aa21fa15ffc1a838849557
10 changes: 6 additions & 4 deletions docs/admin/provisioners.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,10 @@ tags.

## Global PSK (Not Recommended)

> [!NOTE] We do not recommend this approach anymore, as it makes key rotation or
> isolating provisioners far more difficult.
> Global pre-shared keys (PSK) make it difficult to rotate keys or isolate
> provisioners.
>
> We do not recommend using global PSK.

A deployment-wide PSK can be used to authenticate any provisioner. To use a
global PSK, set a
Expand Down Expand Up @@ -285,7 +287,7 @@ will use in concert with the Helm chart for deploying the Coder server.

```sh
coder provisioner keys create my-cool-key --org default
# Optionally, you can specify tags for the provsioner key:
# Optionally, you can specify tags for the provisioner key:
# coder provisioner keys create my-cool-key --org default --tags location=auh kind=k8s
```

Expand All @@ -295,7 +297,7 @@ will use in concert with the Helm chart for deploying the Coder server.
<key omitted>
```

Store the key in a kubernetes secret:
1. Store the key in a kubernetes secret:

```sh
kubectl create secret generic coder-provisioner-psk --from-literal=key1=`<key omitted>`
Expand Down