Skip to content

Commit 4ec2fea

Browse files
authored
docs: fix psk secret cmd (#9524)
1 parent 7918e65 commit 4ec2fea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/admin/provisioners.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ will use in concert with the Helm chart for deploying the Coder server.
101101
secret
102102

103103
```shell
104-
kubectl create secret generic coder-provisioner-psk --from-literal=psk=`head /dev/urandom | tr -dc A-Za-z0-9 | head -c 26`
104+
kubectl create secret generic coder-provisioner-psk --from-literal=psk=`head /dev/urandom | base64 | tr -dc A-Za-z0-9 | head -c 26`
105105
```
106106

107107
1. Modify your Coder `values.yaml` to include

0 commit comments

Comments
 (0)