1 instantiation of HelmChartOptions
Aspire.Hosting.Kubernetes (1)
KubernetesEnvironmentExtensions.cs (1)
148
var options = new
HelmChartOptions
(builder);
46 references to HelmChartOptions
Aspire.Hosting.Kubernetes (46)
HelmChartOptions.cs (26)
15
/// <see cref="KubernetesEnvironmentExtensions.WithHelm(IResourceBuilder{KubernetesEnvironmentResource}, Action{
HelmChartOptions
})"/>.
39
/// <returns>This <see cref="
HelmChartOptions
"/> for chaining.</returns>
41
public
HelmChartOptions
WithNamespace(string @namespace)
55
/// <returns>This <see cref="
HelmChartOptions
"/> for chaining.</returns>
57
public
HelmChartOptions
WithNamespace(IResourceBuilder<ParameterResource> @namespace)
70
internal
HelmChartOptions
WithNamespace([AspireUnion(typeof(string), typeof(IResourceBuilder<ParameterResource>))] object @namespace)
86
/// <returns>This <see cref="
HelmChartOptions
"/> for chaining.</returns>
88
public
HelmChartOptions
WithReleaseName(string releaseName)
102
/// <returns>This <see cref="
HelmChartOptions
"/> for chaining.</returns>
104
public
HelmChartOptions
WithReleaseName(IResourceBuilder<ParameterResource> releaseName)
117
internal
HelmChartOptions
WithReleaseName([AspireUnion(typeof(string), typeof(IResourceBuilder<ParameterResource>))] object releaseName)
138
/// <returns>This <see cref="
HelmChartOptions
"/> for chaining.</returns>
140
public
HelmChartOptions
WithChartVersion(string version)
154
/// <returns>This <see cref="
HelmChartOptions
"/> for chaining.</returns>
156
public
HelmChartOptions
WithChartVersion(IResourceBuilder<ParameterResource> version)
169
internal
HelmChartOptions
WithChartVersion([AspireUnion(typeof(string), typeof(IResourceBuilder<ParameterResource>))] object version)
185
/// <returns>This <see cref="
HelmChartOptions
"/> for chaining.</returns>
187
public
HelmChartOptions
WithChartName(string name)
201
/// <returns>This <see cref="
HelmChartOptions
"/> for chaining.</returns>
203
public
HelmChartOptions
WithChartName(IResourceBuilder<ParameterResource> name)
216
internal
HelmChartOptions
WithChartName([AspireUnion(typeof(string), typeof(IResourceBuilder<ParameterResource>))] object name)
232
/// <returns>This <see cref="
HelmChartOptions
"/> for chaining.</returns>
234
public
HelmChartOptions
WithChartDescription(string description)
248
/// <returns>This <see cref="
HelmChartOptions
"/> for chaining.</returns>
250
public
HelmChartOptions
WithChartDescription(IResourceBuilder<ParameterResource> description)
263
internal
HelmChartOptions
WithChartDescription([AspireUnion(typeof(string), typeof(IResourceBuilder<ParameterResource>))] object description)
KubernetesEnvironmentExtensions.cs (2)
139
Action<
HelmChartOptions
>? configure = null)
148
var
options = new HelmChartOptions(builder);
KubernetesEnvironmentResource.cs (6)
40
/// <see cref="
HelmChartOptions
.WithChartName(string)"/> via
41
/// <see cref="KubernetesEnvironmentExtensions.WithHelm(IResourceBuilder{KubernetesEnvironmentResource}, Action{
HelmChartOptions
})"/>
52
/// Use <see cref="
HelmChartOptions
.WithChartVersion(string)"/> via
53
/// <see cref="KubernetesEnvironmentExtensions.WithHelm(IResourceBuilder{KubernetesEnvironmentResource}, Action{
HelmChartOptions
})"/>
62
/// Use <see cref="
HelmChartOptions
.WithChartDescription(string)"/> via
63
/// <see cref="KubernetesEnvironmentExtensions.WithHelm(IResourceBuilder{KubernetesEnvironmentResource}, Action{
HelmChartOptions
})"/>
KubernetesHelmChartExtensions.cs (5)
71
HelmChartOptions
.ValidateChartVersion(chartVersion, nameof(chartVersion));
173
HelmChartOptions
.ValidateNamespace(@namespace, nameof(@namespace));
194
HelmChartOptions
.ValidateReleaseName(releaseName, nameof(releaseName));
464
HelmChartOptions
.ValidateReleaseName(releaseName, nameof(chart.ReleaseName));
479
HelmChartOptions
.ValidateNamespace(@namespace, nameof(chart.Namespace));
KubernetesPublishingContext.cs (7)
431
/// <see cref="
HelmChartOptions
"/>) and assigns the resolved values onto the
442
HelmChartOptions
.ValidateChartName(name, nameof(
HelmChartOptions
.WithChartName));
452
HelmChartOptions
.ValidateChartVersion(version, nameof(
HelmChartOptions
.WithChartVersion));
462
HelmChartOptions
.ValidateChartDescription(description, nameof(
HelmChartOptions
.WithChartDescription));