Skip to content

Commit

Permalink
Add driver and chartLocation for Helm storage (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
mszostok authored Mar 21, 2022
1 parent e591e44 commit 0d5cf6d
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions manifests/type/helm/storage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ spec:
"type": "object",
"required": [
"name",
"namespace"
"namespace",
"chartLocation"
],
"properties": {
"name": {
Expand All @@ -49,6 +50,20 @@ spec:
"namespace": {
"$id": "#/properties/context/properties/namespace",
"type": "string"
},
"chartLocation": {
"$id": "#/properties/context/properties/chartLocation",
"type": "string"
},
"driver": {
"$id": "#/properties/context/properties/driver",
"type": "string",
"default": "secrets",
"enum": [
"secrets",
"configmaps",
"sql"
]
}
},
"additionalProperties": false
Expand All @@ -57,7 +72,7 @@ spec:
"acceptValue": {
"$id": "#/properties/acceptValue",
"type": "boolean",
"const": true
"const": false
}
},
"additionalProperties": false
Expand Down

0 comments on commit 0d5cf6d

Please sign in to comment.