We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c18d40b commit 491fe68Copy full SHA for 491fe68
1 file changed
docs/deployment/kubernetes.md
@@ -298,7 +298,7 @@ Instead of always editing the function .yml you can link your private Docker rep
298
Create the image pull secret in the `openfaas-fn` namespace:
299
300
```bash
301
-$ kubectl create secret docker-registry myPrivateRepo \
+$ kubectl create secret docker-registry my-private-repo \
302
--docker-username=$DOCKER_USERNAME \
303
--docker-password=$DOCKER_PASSWORD \
304
--docker-email=$DOCKER_EMAIL \
@@ -313,7 +313,7 @@ At the bottom of the manifest add:
313
314
``` yaml
315
imagePullSecrets:
316
-- name: myPrivateRepo
+- name: my-private-repo
317
```
318
319
Save your changes.
0 commit comments