Skip to content

Commit

Permalink
Make description optional in chart_schema (#372)
Browse files Browse the repository at this point in the history
`description` is optional:
https://helm.sh/docs/topics/charts/#the-chartyaml-file

Signed-off-by: Kevin M Granger <[email protected]>
  • Loading branch information
KevinMGranger authored Jan 7, 2022
1 parent e97261b commit f9ff9a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/chart_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ home: str(required=False)
version: str()
apiVersion: str()
appVersion: any(str(), num(), required=False)
description: str()
description: str(required=False)
keywords: list(str(), required=False)
sources: list(str(), required=False)
maintainers: list(include('maintainer'), required=False)
Expand Down

0 comments on commit f9ff9a0

Please sign in to comment.