Skip to content

Commit

Permalink
Merge pull request #2081 from headlamp-k8s/charts-fix-docs-env
Browse files Browse the repository at this point in the history
charts: Fix env values type
  • Loading branch information
joaquimrocha authored Jun 27, 2024
2 parents b9e15b7 + 355e2de commit e32b9c1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
9 changes: 1 addition & 8 deletions charts/headlamp/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -237,14 +237,7 @@
"description": "Name of the environment variable"
},
"value": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
],
"type": "string",
"description": "Value of the environment variable"
}
},
Expand Down
8 changes: 4 additions & 4 deletions charts/headlamp/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ config:

# -- An optional list of environment variables
# env:
# - name: KUBERNETES_SERVICE_HOST
# value: localhost
# - name: KUBERNETES_SERVICE_PORT
# value: 6443
# - name: KUBERNETES_SERVICE_HOST
# value: "localhost"
# - name: KUBERNETES_SERVICE_PORT
# value: "6443"

serviceAccount:
# -- Specifies whether a service account should be created
Expand Down

0 comments on commit e32b9c1

Please sign in to comment.