File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ package options
44type AdditionalChartOptions struct {
55 // WorkingDir is the working directory for this chart within packages/<package-name>
66 WorkingDir string `yaml:"workingDir"`
7- // UpstreamOptions is any options provided on how to get this chart from upstream. It is mutually exclusive with CRDChartOptions
7+ // UpstreamOptions is any options provided on how to get this chart from upstream.
88 UpstreamOptions * UpstreamOptions `yaml:"upstreamOptions,omitempty"`
9- // CRDChartOptions is any options provided on how to generate a CRD chart. It is mutually exclusive with UpstreamOptions
9+ // CRDChartOptions is any options provided on how to generate a CRD chart.
1010 CRDChartOptions * CRDChartOptions `yaml:"crdOptions,omitempty"`
1111 // IgnoreDependencies drops certain dependencies from the list that is parsed from upstream
1212 IgnoreDependencies []string `yaml:"ignoreDependencies"`
Original file line number Diff line number Diff line change @@ -16,12 +16,10 @@ additionalCharts:
1616# These contain other charts that you would like to package alongside this chart
1717- workingDir: # same as above
1818 upstreamOptions:
19- # Mutually exclusive with crdOptions
2019 url: # same as above
2120 subdirectory: # optional, same as above
2221 commit: # optional, same as above
2322 crdOptions:
24- # Mutually exclusive with upstreamOptions
2523 templateDirectory: # A directory within packages/<package>/template that will contain a template for your CRD chart
2624 crdDirectory: # Where to place your CRDs within a CRD chart (e.g. crds for default charts)
2725 addCRDValidationToMainChart: # Whether to add additional validation to your main chart to check that the CRD chart is installed.
You can’t perform that action at this time.
0 commit comments