Skip to content
Docs Try Aspire

HelmChartDependency Properties

Class Properties 7 members
Represents a single dependency in a Helm Chart's dependencies section.
Gets or sets the alias for the Helm chart dependency. The alias is an optional identifier that can be used to reference or override the default name of the dependency.
public string Alias { get; set; }
Gets or sets the condition associated with the Helm chart dependency. The condition is used to control whether this dependency is enabled or disabled based on specific criteria or flags defined in the Helm values.
public string Condition { get; set; }
ImportValues Section titled ImportValues List<string>
Represents the list of values to be imported into the Helm chart dependency. These values are used to override or supplement configuration settings within the chart.
public List<string> ImportValues { get; set; }
Gets or sets the name of the Helm chart dependency. This property specifies the unique name identifying the Helm chart.
public string Name { get; set; }
Repository Section titled Repository string
Gets or sets the repository URL or location where the Helm chart dependency is located.
public string Repository { get; set; }
Tags Section titled Tags List<string>
Gets or sets a list of tags associated with the Helm chart dependency. Tags are used to manage and conditionally enable dependencies in a Helm chart.
public List<string> Tags { get; set; }
Gets or sets the version of the Helm chart dependency. This property specifies the version of the Helm chart to be used in the deployment process, ensuring compatibility and correctness.
public string Version { get; set; }