Skip to content

Commit ff15f7e

Browse files
authored
Merge pull request #2243 from CiiDyR/docs/oci-helm-registry-authentication
docs: document oci usage for helm ChartConfig
2 parents 0a50367 + 53704b8 commit ff15f7e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pkg/devspace/config/versions/latest/schema.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -799,15 +799,15 @@ type HelmConfig struct {
799799

800800
// ChartConfig defines the helm chart options
801801
type 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

Comments
 (0)