Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(CRDs-schema): add global and enabled placeholders for subchart/dependency #1348

Merged
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions traefik-crds/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,17 @@
"deleteOnUninstall": {
"type": "boolean"
},
"enabled": {
"type": "boolean"
},
"gatewayAPI": {
"type": "boolean"
},
"global": {
"additionalProperties": true,
"properties": {},
"type": "object"
},
"hub": {
"type": "boolean"
},
Expand Down
7 changes: 7 additions & 0 deletions traefik-crds/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
# This is a YAML-formatted file.
# Declare variables to be passed into templates

# -- Global values
# This definition is only here as a placeholder such that it is included in the json schema.
global: {} # @schema additionalProperties: true
# -- Field that can be used as a condition when this chart is a dependency.
# This definition is only here as a placeholder such that it is included in the json schema.
# See https://helm.sh/docs/chart_best_practices/dependencies/#conditions-and-tags for more info.
enabled: true
# -- Install Traefik CRDs by default
traefik: true
# -- Set it to true to install GatewayAPI CRDs.
Expand Down