Skip to content

Commit

Permalink
chore(backport release-0.9): fix(directives): require release name fo…
Browse files Browse the repository at this point in the history
…r `helm-template` (#2631)

Co-authored-by: Hidde Beydals <[email protected]>
  • Loading branch information
akuitybot and hiddeco authored Oct 2, 2024
1 parent cba08ce commit f58e8d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions internal/directives/schemas/helm-template-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"title": "HelmTemplateConfig",
"type": "object",
"additionalProperties": false,
"required": ["path", "outPath"],
"required": ["outPath", "path", "releaseName"],
"properties": {
"path": {
"type": "string",
Expand All @@ -17,7 +17,8 @@
},
"releaseName": {
"type": "string",
"description": "ReleaseName to use for the rendered manifests."
"description": "ReleaseName to use for the rendered manifests.",
"minLength": 1
},
"useReleaseName": {
"type": "boolean",
Expand Down
2 changes: 1 addition & 1 deletion internal/directives/zz_config_types.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f58e8d7

Please sign in to comment.