Skip to content

Commit

Permalink
Merge pull request #2145 from headlamp-k8s/helm-imagePull-secret
Browse files Browse the repository at this point in the history
charts: Fix imagePullSecrets in value schema
  • Loading branch information
illume authored Jul 8, 2024
2 parents f1ae6c8 + 02df520 commit 320f2e2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions charts/headlamp/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,15 @@
},
"imagePullSecrets": {
"type": "array",
"description": "Image pull secrets",
"description": "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use.",
"items": {
"type": "string"
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the image pull secret"
}
}
}
},
"nameOverride": {
Expand Down

0 comments on commit 320f2e2

Please sign in to comment.