From 9fee2abd06c461f7456426e9f2f0a2ff1a3aabf3 Mon Sep 17 00:00:00 2001 From: Naveen <172697+naveensrinivasan@users.noreply.github.com> Date: Fri, 5 Apr 2024 13:13:13 -0500 Subject: [PATCH] Update src/types/component.go Co-authored-by: razzle --- src/types/component.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/component.go b/src/types/component.go index b259b4eb13..eaeed14bd8 100644 --- a/src/types/component.go +++ b/src/types/component.go @@ -115,7 +115,7 @@ type ZarfChart struct { 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=List of variables to set in the Helm chart"` + 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.