Skip to content
DocsTry Aspire
DocsTry

HelmChartOptions

Classsealednet8.0
📦 Aspire.Hosting.Kubernetes v13.4.0-preview.1.26281.18
Provides options for configuring Helm chart deployment settings on a KubernetesEnvironmentResource.
namespace Aspire.Hosting.Kubernetes;
public sealed class HelmChartOptions
{
// ...
}
This class is used as the configuration callback parameter for KubernetesEnvironmentExtensions.WithHelm. Each method adds a corresponding annotation to the environment resource.
WithChartDescription(string)ats ignored
Sets the Helm chart description written to the generated Chart.yaml.
WithChartDescription(IResourceBuilder<ParameterResource>)ats ignored
Sets the Helm chart description written to the generated Chart.yaml using a parameter that will be prompted at deploy time.
WithChartName(string)ats ignored
Sets the Helm chart name written to the generated Chart.yaml.
WithChartName(IResourceBuilder<ParameterResource>)ats ignored
Sets the Helm chart name written to the generated Chart.yaml using a parameter that will be prompted at deploy time.
WithChartVersion(string)ats ignored
Sets the Helm chart version for deployment.
WithChartVersion(IResourceBuilder<ParameterResource>)ats ignored
Sets the Helm chart version for deployment using a parameter that will be prompted at deploy time.
WithNamespace(string)ats ignored
Sets the target Kubernetes namespace for deployment.
WithNamespace(IResourceBuilder<ParameterResource>)ats ignored
Sets the target Kubernetes namespace for deployment using a parameter that will be prompted at deploy time.
WithReleaseName(string)ats ignored
Sets the Helm release name for deployment.
WithReleaseName(IResourceBuilder<ParameterResource>)ats ignored
Sets the Helm release name for deployment using a parameter that will be prompted at deploy time.
View all methods