-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from foomo/gateway-crds-0.1.1
feat(gateway-crds): update schema
- Loading branch information
Showing
5 changed files
with
52 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,35 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema#", | ||
"type": "object", | ||
"properties": { | ||
"fullnameOverride": { | ||
"type": "string" | ||
}, | ||
"nameOverride": { | ||
"type": "string" | ||
}, | ||
"namespaceOverride": { | ||
"type": "string" | ||
} | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"additionalProperties": false, | ||
"properties": { | ||
"fullnameOverride": { | ||
"default": "", | ||
"description": "Overrides the chart's computed fullname", | ||
"required": [], | ||
"title": "fullnameOverride", | ||
"type": "string" | ||
}, | ||
"global": { | ||
"description": "Global values are values that can be accessed from any chart or subchart by exactly the same name.", | ||
"required": [], | ||
"title": "global", | ||
"type": "object" | ||
}, | ||
"nameOverride": { | ||
"default": "", | ||
"description": "Overrides the chart's name", | ||
"required": [], | ||
"title": "nameOverride", | ||
"type": "string" | ||
}, | ||
"namespaceOverride": { | ||
"default": "", | ||
"description": "The name of the Namespace to deploy", | ||
"required": [], | ||
"title": "namespaceOverride", | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"required": [], | ||
"type": "object" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,20 @@ | ||
# yaml-language-server: $schema=values.schema.json | ||
|
||
# @schema | ||
# type: string | ||
# @schema | ||
# -- Overrides the chart's name | ||
# @section -- Overrides | ||
nameOverride: "" | ||
nameOverride: '' | ||
# @schema | ||
# type: string | ||
# @schema | ||
# -- Overrides the chart's computed fullname | ||
# @section -- Overrides | ||
fullnameOverride: "" | ||
fullnameOverride: '' | ||
# @schema | ||
# type: string | ||
# @schema | ||
# -- The name of the Namespace to deploy | ||
# If not set, `.Release.Namespace` is used | ||
# @section -- Overrides | ||
namespaceOverride: '' |