We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cd1c85 commit 71b88e1Copy full SHA for 71b88e1
docs/admin/provisioners.md
@@ -101,7 +101,7 @@ will use in concert with the Helm chart for deploying the Coder server.
101
secret
102
103
```shell
104
- kubectl create secret generic coder-provisioner-psk --from-literal=psk=`head /dev/urandom | tr -dc A-Za-z0-9 | head -c 26`
+ kubectl create secret generic coder-provisioner-psk --from-literal=psk=`head /dev/urandom | base64 | tr -dc A-Za-z0-9 | head -c 26`
105
```
106
107
1. Modify your Coder `values.yaml` to include
0 commit comments