Skip to content

Commit 6b8d615

Browse files
committed
fix: Include name key in example of imagePullSecrets
When `.Values.image.imagePullSecrets` was introduced in #174, we opted to use the same format for `imagePullSecrets` list as used in Kubernetes' PodSpec; it's a list of objects that requires each list element to have the key `name`. We failed to indicate this in the example given in the comment. This change fixes that.
1 parent 83a2d50 commit 6b8d615

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

charts/invenio/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ image:
3333
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
3434
## e.g:
3535
## pullSecrets:
36-
## - myRegistryKeySecretName
36+
## - name: myRegistryKeySecretName
3737
##
3838
pullSecrets: []
3939

0 commit comments

Comments
 (0)