@@ -799,15 +799,15 @@ type HelmConfig struct {
799799
800800// ChartConfig defines the helm chart options
801801type ChartConfig struct {
802- // Name is the name of the helm chart to deploy. Can also be a local path
802+ // Name is the name of the helm chart to deploy. Can also be a local path or an oci url
803803 Name string `yaml:"name,omitempty" json:"name,omitempty" jsonschema:"required" jsonschema_extras:"group=repo,group_name=Source: Helm Repository"`
804804 // Version is the version of the helm chart to deploy
805805 Version string `yaml:"version,omitempty" json:"version,omitempty" jsonschema_extras:"group=repo"`
806806 // RepoURL is the url of the repo to deploy the chart from
807807 RepoURL string `yaml:"repo,omitempty" json:"repo,omitempty" jsonschema_extras:"group=repo"`
808- // Username is the username to authenticate to the chart repo
808+ // Username is the username to authenticate to the chart repo. When using an OCI chart, used for registry auth
809809 Username string `yaml:"username,omitempty" json:"username,omitempty" jsonschema_extras:"group=repo"`
810- // Password is the password to authenticate to the chart repo
810+ // Password is the password to authenticate to the chart repo, When using an OCI chart, used for registry auth
811811 Password string `yaml:"password,omitempty" json:"password,omitempty" jsonschema_extras:"group=repo"`
812812 // Source can be used to reference an helm chart from a distant location
813813 // such as a git repository
0 commit comments