From d4a750e2a0894839916465c19c1d017c99bd0b7e Mon Sep 17 00:00:00 2001 From: Naveen <172697+naveensrinivasan@users.noreply.github.com> Date: Tue, 9 Apr 2024 09:25:35 -0500 Subject: [PATCH] feat: allow chart deploy overrides ALPHA (#2403) ## Description - This feature allows chart deployment overrides. ## Related Issue Relates to https://github.com/defenseunicorns/zarf/issues/2133 ## Type of change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Other (security config, docs update, etc) ## Checklist before merging - [ ] Test, docs, adr added or updated as needed - [ ] [Contributor Guide Steps](https://github.com/defenseunicorns/zarf/blob/main/CONTRIBUTING.md#developer-workflow) followed --------- Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com> Co-authored-by: Lucas Rodriguez Co-authored-by: razzle Co-authored-by: Austin Abro <37223396+AustinAbro321@users.noreply.github.com> --- adr/0023-chart-override.md | 65 ++++++ docs/3-create-a-zarf-package/4-zarf-schema.md | 121 ++++++++-- examples/helm-charts/zarf.yaml | 7 + src/pkg/packager/deploy.go | 53 ++++- src/pkg/packager/deploy_test.go | 218 ++++++++++++++++++ src/types/component.go | 28 ++- zarf.schema.json | 35 +++ 7 files changed, 493 insertions(+), 34 deletions(-) create mode 100644 adr/0023-chart-override.md create mode 100644 src/pkg/packager/deploy_test.go diff --git a/adr/0023-chart-override.md b/adr/0023-chart-override.md new file mode 100644 index 0000000000..d4fb4661c0 --- /dev/null +++ b/adr/0023-chart-override.md @@ -0,0 +1,65 @@ +# 23. Simplifying Helm Chart Value Overrides + +Date: 2024-03-25 + +## Status + +Accepted + + +## Context + +The process of deploying applications with Helm charts in Kubernetes environments often necessitates the customization of chart values to align with specific operational or environmental requirements. The current method for customizing these values—either through manual edits or `###ZARF_VAR_XYZ###`. A more streamlined approach would greatly enhance the deployment experience by offering both flexibility and reliability. + +## Decision + +To address this issue, we propose the introduction of a feature designed to simplify the process of overriding chart values at the time of deployment. This feature would allow users to easily specify overrides for any chart values directly via command-line arguments, eliminating the need to alter the chart's default values file or manage multiple command-line arguments for each override. + +Key aspects of the proposed implementation include: +- Use existing `--set` flags to specify overrides for chart values. +- The ability to list all overrides in a structured and easily understandable format within `zarf.yaml`. +- Ensuring that during deployment, these specified overrides take precedence over the chart's default values, thus facilitating customized deployments without necessitating permanent modifications to the chart. + +## Consequences + +Adopting this feature would lead to several key improvements: +- **Streamlined Configuration Process**: Allowing helm values overrides in the zarf package schema simplifies the user experience by reducing the reliance on extensive custom `###ZARF_VAR_XYZ###` templating and aligning more closely with standard Helm practices + +Ultimately, this feature is aimed at enhancing the deployment workflow by offering a straightforward and efficient means of customizing Helm chart deployments via command-line inputs. + +## Example Configuration + +Below is an example of how the `zarf.yaml` configuration file might be structured to utilize the new override feature for Helm chart values: + +```yaml +kind: ZarfPackageConfig +metadata: + name: helm-charts + description: Example showcasing multiple ways to deploy helm charts + version: 0.0.1 + +components: + - name: demo-helm-charts + required: true + charts: + - name: podinfo-local + version: 6.4.0 + namespace: podinfo-from-local-chart + localPath: chart + valuesFiles: + - values.yaml + variables: + - name: REPLICA_COUNT + description: "Override the number of pod replicas" + path: replicaCount +``` +This configuration allows for the specification of default values and descriptions for variables that can be overridden at deployment time. The variables section under each chart specifies the variables that can be overridden, along with a path that indicates where in the values file the variable is located. + +### Command Line Example + +To override the `REPLICA_COUNT` variable at deployment time, the following command can be used: + +```bash +zarf package deploy zarf-package-helm-charts-arm64-0.0.1.tar.zst --set REPLICA_COUNT=5 +``` +This command demonstrates how users can easily customize their Helm chart deployments by specifying overrides for chart values directly via command-line arguments, in line with the proposed feature. diff --git a/docs/3-create-a-zarf-package/4-zarf-schema.md b/docs/3-create-a-zarf-package/4-zarf-schema.md index e4ff7eb157..48acf1650a 100644 --- a/docs/3-create-a-zarf-package/4-zarf-schema.md +++ b/docs/3-create-a-zarf-package/4-zarf-schema.md @@ -1185,6 +1185,95 @@ Must be one of: +
+ + variables + +  +
+ + ## components > charts > variables + +**Description:** [alpha] List of variables to set in the Helm chart + +| | | +| -------- | ------- | +| **Type** | `array` | + +![Min Items: N/A](https://img.shields.io/badge/Min%20Items%3A%20N/A-gold) +![Max Items: N/A](https://img.shields.io/badge/Max%20Items%3A%20N/A-gold) +![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) +![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) + + ### ZarfChartVariable + +| | | +| ------------------------- | -------------------------------------------------------------------------------------------------------- | +| **Type** | `object` | +| **Additional properties** | [![Not allowed](https://img.shields.io/badge/Not%20allowed-red)](# "Additional Properties not allowed.") | +| **Defined in** | #/definitions/ZarfChartVariable | + +
+ + name * + +  +
+ +![Required](https://img.shields.io/badge/Required-red) + +**Description:** The name of the variable + +| | | +| -------- | -------- | +| **Type** | `string` | + +| Restrictions | | +| --------------------------------- | ----------------------------------------------------------------------------- | +| **Must match regular expression** | ```^[A-Z0-9_]+$``` [Test](https://regex101.com/?regex=%5E%5BA-Z0-9_%5D%2B%24) | + +
+
+ +
+ + description * + +  +
+ +![Required](https://img.shields.io/badge/Required-red) + +**Description:** A brief description of what the variable controls + +| | | +| -------- | -------- | +| **Type** | `string` | + +
+
+ +
+ + path * + +  +
+ +![Required](https://img.shields.io/badge/Required-red) + +**Description:** The path within the Helm chart values where this variable applies + +| | | +| -------- | -------- | +| **Type** | `string` | + +
+
+ +
+
+ @@ -1208,7 +1297,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### ZarfDataInjection + ### ZarfDataInjection | | | | ------------------------- | -------------------------------------------------------------------------------------------------------- | @@ -1371,7 +1460,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### ZarfFile + ### ZarfFile | | | | ------------------------- | -------------------------------------------------------------------------------------------------------- | @@ -1465,7 +1554,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### symlinks items + ### symlinks items | | | | -------- | -------- | @@ -1511,7 +1600,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### images items + ### images items | | | | -------- | -------- | @@ -1538,7 +1627,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### repos items + ### repos items | | | | -------- | -------- | @@ -1633,7 +1722,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### valuesFiles items + ### valuesFiles items | | | | -------- | -------- | @@ -1676,7 +1765,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### fluxPatchFiles items + ### fluxPatchFiles items | | | | -------- | -------- | @@ -1824,7 +1913,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### env items + ### env items | | | | -------- | -------- | @@ -1939,7 +2028,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### ZarfComponentAction + ### ZarfComponentAction | | | | ------------------------- | -------------------------------------------------------------------------------------------------------- | @@ -2029,7 +2118,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### env items + ### env items | | | | -------- | -------- | @@ -2094,7 +2183,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### ZarfComponentActionSetVariable + ### ZarfComponentActionSetVariable | | | | ------------------------- | -------------------------------------------------------------------------------------------------------- | @@ -2448,7 +2537,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### ZarfComponentAction + ### ZarfComponentAction | | | | ------------------------- | -------------------------------------------------------------------------------------------------------- | @@ -2479,7 +2568,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### ZarfComponentAction + ### ZarfComponentAction | | | | ------------------------- | -------------------------------------------------------------------------------------------------------- | @@ -2510,7 +2599,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### ZarfComponentAction + ### ZarfComponentAction | | | | ------------------------- | -------------------------------------------------------------------------------------------------------- | @@ -2590,7 +2679,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### ZarfPackageConstant + ### ZarfPackageConstant | | | | ------------------------- | -------------------------------------------------------------------------------------------------------- | @@ -2709,7 +2798,7 @@ Must be one of: ![Item unicity: False](https://img.shields.io/badge/Item%20unicity%3A%20False-gold) ![Additional items: N/A](https://img.shields.io/badge/Additional%20items%3A%20N/A-gold) - ### ZarfPackageVariable + ### ZarfPackageVariable | | | | ------------------------- | -------------------------------------------------------------------------------------------------------- | diff --git a/examples/helm-charts/zarf.yaml b/examples/helm-charts/zarf.yaml index d6481b334d..4c8cbd7040 100644 --- a/examples/helm-charts/zarf.yaml +++ b/examples/helm-charts/zarf.yaml @@ -16,6 +16,12 @@ components: localPath: chart valuesFiles: - values.yaml + # Variables are used to override the default values in the chart + # This can be overridden by the user at deployment time with the `--set` flag + variables: + - name: REPLICA_COUNT + description: "Override the number of pod replicas" + path: replicaCount - name: podinfo-oci version: 6.4.0 @@ -77,3 +83,4 @@ components: name: cool-release-name-podinfo namespace: podinfo-from-repo condition: available + diff --git a/src/pkg/packager/deploy.go b/src/pkg/packager/deploy.go index 7ec050fd4f..67eccff4db 100644 --- a/src/pkg/packager/deploy.go +++ b/src/pkg/packager/deploy.go @@ -547,10 +547,46 @@ func (p *Packager) pushReposToRepository(reposPath string, repos []string) error return nil } +// generateValuesOverrides creates a map containing overrides for chart values based on the given inputs. +// It prioritizes the overrides in this order: +// 1. Variables defined in the ZarfComponent, including both Set Variables and Chart Variables. +// 2. Deployment options specified through DeployOpts. +// This function is useful for customizing the deployment of a Helm chart by programmatically setting chart values. +// +// Returns: +// - A map containing the final set of value overrides for the chart, where keys are the variable names. +func generateValuesOverrides(chartVariables []types.ZarfChartVariable, + setVariableMap map[string]*types.ZarfSetVariable, + deployOpts types.ZarfDeployOptions, + componentName, chartName string) (map[string]any, error) { + + valuesOverrides := make(map[string]any) + chartOverrides := make(map[string]any) + + for _, variable := range chartVariables { + if setVar, ok := setVariableMap[variable.Name]; ok && setVar != nil { + // Use the variable's path as a key to ensure unique entries for variables with the same name but different paths. + if err := helpers.MergePathAndValueIntoMap(chartOverrides, variable.Path, setVar.Value); err != nil { + return nil, fmt.Errorf("unable to merge path and value into map: %w", err) + } + } + } + + // Apply any direct overrides specified in the deployment options for this component and chart + if componentOverrides, ok := deployOpts.ValuesOverridesMap[componentName]; ok { + if chartSpecificOverrides, ok := componentOverrides[chartName]; ok { + valuesOverrides = chartSpecificOverrides + } + } + + // Merge chartOverrides into valuesOverrides to ensure all overrides are applied. + // This corrects the logic to ensure that chartOverrides and valuesOverrides are merged correctly. + return helpers.MergeMapRecursive(valuesOverrides, chartOverrides), nil +} + // Install all Helm charts and raw k8s manifests into the k8s cluster. func (p *Packager) installChartAndManifests(componentPaths *layout.ComponentPaths, component types.ZarfComponent) (installedCharts []types.InstalledChart, err error) { for _, chart := range component.Charts { - // zarf magic for the value file for idx := range chart.ValuesFiles { chartValueName := helm.StandardValuesName(componentPaths.Values, chart, idx) @@ -558,13 +594,14 @@ func (p *Packager) installChartAndManifests(componentPaths *layout.ComponentPath return installedCharts, err } } - - // TODO (@WSTARR): Currently this logic is library-only and is untested while it is in an experimental state - it may eventually get added as shorthand in Zarf Variables though - var valuesOverrides map[string]any - if componentChartValuesOverrides, ok := p.cfg.DeployOpts.ValuesOverridesMap[component.Name]; ok { - if chartValuesOverrides, ok := componentChartValuesOverrides[chart.Name]; ok { - valuesOverrides = chartValuesOverrides - } + // this is to get the overrides for the chart from the commandline and + // the chart variables set in the ZarfComponent and as well as DeployOpts set from the Library user. + // The order of precedence is as follows: + // 1. Set Variables and Chart Variables from the ZarfComponent + // 2. DeployOpts + valuesOverrides, err := generateValuesOverrides(chart.Variables, p.cfg.SetVariableMap, p.cfg.DeployOpts, component.Name, chart.Name) + if err != nil { + return installedCharts, err } helmCfg := helm.New( diff --git a/src/pkg/packager/deploy_test.go b/src/pkg/packager/deploy_test.go new file mode 100644 index 0000000000..2b235b9c56 --- /dev/null +++ b/src/pkg/packager/deploy_test.go @@ -0,0 +1,218 @@ +// SPDX-License-Identifier: Apache-2.0 +// SPDX-FileCopyrightText: 2021-Present The Zarf Authors + +package packager + +import ( + "reflect" + "testing" + + "github.com/defenseunicorns/zarf/src/types" +) + +func TestGenerateValuesOverrides(t *testing.T) { + t.Parallel() + + tests := []struct { + name string + chartVariables []types.ZarfChartVariable + setVariableMap map[string]*types.ZarfSetVariable + deployOpts types.ZarfDeployOptions + componentName string + chartName string + want map[string]any + }{ + { + name: "Empty inputs", + chartVariables: []types.ZarfChartVariable{}, + setVariableMap: map[string]*types.ZarfSetVariable{}, + deployOpts: types.ZarfDeployOptions{}, + componentName: "", + chartName: "", + want: map[string]any{}, + }, + { + name: "Single variable", + chartVariables: []types.ZarfChartVariable{{Name: "testVar", Path: "testVar"}}, + setVariableMap: map[string]*types.ZarfSetVariable{"testVar": {Value: "testValue"}}, + deployOpts: types.ZarfDeployOptions{}, + componentName: "testComponent", + chartName: "testChart", + want: map[string]any{"testVar": "testValue"}, + }, + { + name: "Non-matching setVariable", + chartVariables: []types.ZarfChartVariable{{Name: "expectedVar", Path: "path.to.expectedVar"}}, + setVariableMap: map[string]*types.ZarfSetVariable{"unexpectedVar": {Value: "unexpectedValue"}}, + deployOpts: types.ZarfDeployOptions{}, + componentName: "testComponent", + chartName: "testChart", + want: map[string]any{}, + }, + { + name: "Nested 3 level setVariableMap", + chartVariables: []types.ZarfChartVariable{ + {Name: "level1.level2.level3Var", Path: "level1.level2.level3Var"}, + }, + setVariableMap: map[string]*types.ZarfSetVariable{ + "level1.level2.level3Var": {Value: "nestedValue"}, + }, + deployOpts: types.ZarfDeployOptions{}, + componentName: "nestedComponent", + chartName: "nestedChart", + want: map[string]any{ + "level1": map[string]any{ + "level2": map[string]any{ + "level3Var": "nestedValue", + }, + }, + }, + }, + { + name: "Multiple variables with nested and non-nested paths, distinct values", + chartVariables: []types.ZarfChartVariable{ + {Name: "NESTED_VAR_LEVEL2", Path: "nestedVar.level2"}, + {Name: "simpleVar", Path: "simpleVar"}, + }, + setVariableMap: map[string]*types.ZarfSetVariable{ + "NESTED_VAR_LEVEL2": {Value: "distinctNestedValue"}, + "simpleVar": {Value: "distinctSimpleValue"}, + }, + deployOpts: types.ZarfDeployOptions{}, + componentName: "mixedComponent", + chartName: "mixedChart", + want: map[string]any{ + "nestedVar": map[string]any{ + "level2": "distinctNestedValue", + }, + "simpleVar": "distinctSimpleValue", + }, + }, + { + name: "Values override test", + chartVariables: []types.ZarfChartVariable{ + {Name: "overrideVar", Path: "path"}, + }, + setVariableMap: map[string]*types.ZarfSetVariable{ + "path": {Value: "overrideValue"}, + }, + deployOpts: types.ZarfDeployOptions{ + ValuesOverridesMap: map[string]map[string]map[string]any{ + "testComponent": { + "testChart": { + "path": "deployOverrideValue", + }, + }, + }, + }, + componentName: "testComponent", + chartName: "testChart", + want: map[string]any{ + "path": "deployOverrideValue", + }, + }, + { + name: "Missing variable in setVariableMap but present in ValuesOverridesMap", + chartVariables: []types.ZarfChartVariable{ + {Name: "missingVar", Path: "missingVarPath"}, + }, + setVariableMap: map[string]*types.ZarfSetVariable{}, + deployOpts: types.ZarfDeployOptions{ + ValuesOverridesMap: map[string]map[string]map[string]any{ + "testComponent": { + "testChart": { + "missingVarPath": "overrideValue", + }, + }, + }, + }, + componentName: "testComponent", + chartName: "testChart", + want: map[string]any{ + "missingVarPath": "overrideValue", + }, + }, + { + name: "Non-existent component or chart", + chartVariables: []types.ZarfChartVariable{{Name: "someVar", Path: "someVar"}}, + setVariableMap: map[string]*types.ZarfSetVariable{"someVar": {Value: "value"}}, + deployOpts: types.ZarfDeployOptions{ + ValuesOverridesMap: map[string]map[string]map[string]any{ + "nonExistentComponent": { + "nonExistentChart": { + "someVar": "overrideValue", + }, + }, + }, + }, + componentName: "actualComponent", + chartName: "actualChart", + want: map[string]any{"someVar": "value"}, + }, + { + name: "Variable in setVariableMap but not in chartVariables", + chartVariables: []types.ZarfChartVariable{}, + setVariableMap: map[string]*types.ZarfSetVariable{ + "orphanVar": {Value: "orphanValue"}, + }, + deployOpts: types.ZarfDeployOptions{}, + componentName: "orphanComponent", + chartName: "orphanChart", + want: map[string]any{}, + }, + { + name: "Empty ValuesOverridesMap with non-empty setVariableMap and chartVariables", + chartVariables: []types.ZarfChartVariable{ + {Name: "var1", Path: "path.to.var1"}, + {Name: "var2", Path: "path.to.var2"}, + {Name: "var3", Path: "path.to3.var3"}, + }, + setVariableMap: map[string]*types.ZarfSetVariable{ + "var1": {Value: "value1"}, + "var2": {Value: "value2"}, + "var3": {Value: "value3"}, + }, + deployOpts: types.ZarfDeployOptions{ + ValuesOverridesMap: map[string]map[string]map[string]any{}, + }, + componentName: "componentWithVars", + chartName: "chartWithVars", + want: map[string]any{ + "path": map[string]any{ + "to": map[string]any{ + "var1": "value1", + "var2": "value2", + }, + "to3": map[string]any{ + "var3": "value3", + }, + }, + }, + }, + { + name: "Empty chartVariables and non-empty setVariableMap", + chartVariables: []types.ZarfChartVariable{}, + setVariableMap: map[string]*types.ZarfSetVariable{ + "var1": {Value: "value1"}, + "var2": {Value: "value2"}, + }, + deployOpts: types.ZarfDeployOptions{}, + componentName: "componentWithVars", + chartName: "chartWithVars", + want: map[string]any{}, + }, + } + + for _, tt := range tests { + tt := tt + t.Run(tt.name, func(t *testing.T) { + got, err := generateValuesOverrides(tt.chartVariables, tt.setVariableMap, tt.deployOpts, tt.componentName, tt.chartName) + if err != nil { + t.Errorf("%s: generateValuesOverrides() error = %v", tt.name, err) + } + if !reflect.DeepEqual(got, tt.want) { + t.Errorf("%s: generateValuesOverrides() got = %v, want %v", tt.name, got, tt.want) + } + }) + } +} diff --git a/src/types/component.go b/src/types/component.go index 028f25202c..eaeed14bd8 100644 --- a/src/types/component.go +++ b/src/types/component.go @@ -105,16 +105,24 @@ type ZarfFile struct { // ZarfChart defines a helm chart to be deployed. type ZarfChart struct { - Name string `json:"name" jsonschema:"description=The name of the chart within Zarf; note that this must be unique and does not need to be the same as the name in the chart repo"` - Version string `json:"version,omitempty" jsonschema:"description=The version of the chart to deploy; for git-based charts this is also the tag of the git repo by default (when not using the '@' syntax for 'repos')"` - URL string `json:"url,omitempty" jsonschema:"example=OCI registry: oci://ghcr.io/stefanprodan/charts/podinfo,example=helm chart repo: https://stefanprodan.github.io/podinfo,example=git repo: https://github.com/stefanprodan/podinfo (note the '@' syntax for 'repos' is supported here too)" jsonschema_description:"The URL of the OCI registry, chart repository, or git repo where the helm chart is stored"` - RepoName string `json:"repoName,omitempty" jsonschema:"description=The name of a chart within a Helm repository (defaults to the Zarf name of the chart)"` - GitPath string `json:"gitPath,omitempty" jsonschema:"description=(git repo only) The sub directory to the chart within a git repo,example=charts/your-chart"` - LocalPath string `json:"localPath,omitempty" jsonschema:"description=The path to a local chart's folder or .tgz archive"` - Namespace string `json:"namespace" jsonschema:"description=The namespace to deploy the chart to"` - ReleaseName string `json:"releaseName,omitempty" jsonschema:"description=The name of the Helm release to create (defaults to the Zarf name of the chart)"` - NoWait bool `json:"noWait,omitempty" jsonschema:"description=Whether to not wait for chart resources to be ready before continuing"` - ValuesFiles []string `json:"valuesFiles,omitempty" jsonschema:"description=List of local values file paths or remote URLs to include in the package; these will be merged together when deployed"` + Name string `json:"name" jsonschema:"description=The name of the chart within Zarf; note that this must be unique and does not need to be the same as the name in the chart repo"` + Version string `json:"version,omitempty" jsonschema:"description=The version of the chart to deploy; for git-based charts this is also the tag of the git repo by default (when not using the '@' syntax for 'repos')"` + URL string `json:"url,omitempty" jsonschema:"example=OCI registry: oci://ghcr.io/stefanprodan/charts/podinfo,example=helm chart repo: https://stefanprodan.github.io/podinfo,example=git repo: https://github.com/stefanprodan/podinfo (note the '@' syntax for 'repos' is supported here too)" jsonschema_description:"The URL of the OCI registry, chart repository, or git repo where the helm chart is stored"` + RepoName string `json:"repoName,omitempty" jsonschema:"description=The name of a chart within a Helm repository (defaults to the Zarf name of the chart)"` + GitPath string `json:"gitPath,omitempty" jsonschema:"description=(git repo only) The sub directory to the chart within a git repo,example=charts/your-chart"` + LocalPath string `json:"localPath,omitempty" jsonschema:"description=The path to a local chart's folder or .tgz archive"` + Namespace string `json:"namespace" jsonschema:"description=The namespace to deploy the chart to"` + ReleaseName string `json:"releaseName,omitempty" jsonschema:"description=The name of the Helm release to create (defaults to the Zarf name of the chart)"` + NoWait bool `json:"noWait,omitempty" jsonschema:"description=Whether to not wait for chart resources to be ready before continuing"` + ValuesFiles []string `json:"valuesFiles,omitempty" jsonschema:"description=List of local values file paths or remote URLs to include in the package; these will be merged together when deployed"` + Variables []ZarfChartVariable `json:"variables,omitempty" jsonschema:"description=[alpha] List of variables to set in the Helm chart"` +} + +// ZarfChartVariable represents a variable that can be set for a Helm chart overrides. +type ZarfChartVariable struct { + Name string `json:"name" jsonschema:"description=The name of the variable,pattern=^[A-Z0-9_]+$"` + Description string `json:"description" jsonschema:"description=A brief description of what the variable controls"` + Path string `json:"path" jsonschema:"description=The path within the Helm chart values where this variable applies"` } // ZarfManifest defines raw manifests Zarf will deploy as a helm chart. diff --git a/zarf.schema.json b/zarf.schema.json index f61482b7a4..69f4aae9d0 100644 --- a/zarf.schema.json +++ b/zarf.schema.json @@ -256,6 +256,41 @@ }, "type": "array", "description": "List of local values file paths or remote URLs to include in the package; these will be merged together when deployed" + }, + "variables": { + "items": { + "$schema": "http://json-schema.org/draft-04/schema#", + "$ref": "#/definitions/ZarfChartVariable" + }, + "type": "array", + "description": "[alpha] List of variables to set in the Helm chart" + } + }, + "additionalProperties": false, + "type": "object", + "patternProperties": { + "^x-": {} + } + }, + "ZarfChartVariable": { + "required": [ + "name", + "description", + "path" + ], + "properties": { + "name": { + "pattern": "^[A-Z0-9_]+$", + "type": "string", + "description": "The name of the variable" + }, + "description": { + "type": "string", + "description": "A brief description of what the variable controls" + }, + "path": { + "type": "string", + "description": "The path within the Helm chart values where this variable applies" } }, "additionalProperties": false,