Skip to content
Docs Try Aspire
Docs Try

HelmChartOptions

Class sealed net8.0
📦 Aspire.Hosting.Kubernetes v13.3.0-preview.1.26254.5
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.
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