Skip to content

Commit

Permalink
charts: Fix imagePullSecrets in value schema
Browse files Browse the repository at this point in the history
k8s wanted it in a different way, earlier we were validating wrong
input.

Fixes: #2113
Signed-off-by: Kautilya Tripathi <ktripathi@microsoft.com>
  • Loading branch information
knrt10 committed Jul 8, 2024
1 parent de308b4 commit 02df520
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 02df520

Please sign in to comment.