Skip to content

Commit

Permalink
Adds missing namespace property to Helm configuration schema (#3948)
Browse files Browse the repository at this point in the history
When using Helm with azd users can specify the namespace of where a helm release will be deployed to. The Helm integration already supports this but the namespace property was unintentionally omitted in the schema.
  • Loading branch information
wbreza authored May 25, 2024
1 parent 55e61d6 commit 2ae13ec
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions schemas/alpha/azure.yaml.json
Original file line number Diff line number Diff line change
Expand Up @@ -773,6 +773,11 @@
"title": "The version of the helm chart",
"description": "The version of the helm chart to install."
},
"namespace": {
"type": "string",
"title": "Optional. The k8s namespace to install the helm chart",
"description": "When set will install the helm chart to the specified namespace. Defaults to the service namespace."
},
"values": {
"type": "string",
"title": "Optional. Relative path from service to a values.yaml to pass to the helm chart",
Expand Down
5 changes: 5 additions & 0 deletions schemas/v1.0/azure.yaml.json
Original file line number Diff line number Diff line change
Expand Up @@ -793,6 +793,11 @@
"title": "The version of the helm chart",
"description": "The version of the helm chart to install."
},
"namespace": {
"type": "string",
"title": "Optional. The k8s namespace to install the helm chart",
"description": "When set will install the helm chart to the specified namespace. Defaults to the service namespace."
},
"values": {
"type": "string",
"title": "Optional. Relative path from service to a values.yaml to pass to the helm chart",
Expand Down

0 comments on commit 2ae13ec

Please sign in to comment.