13 references to WithChartName
Aspire.Hosting.Kubernetes (2)
HelmChartOptions.cs (1)
222
string nameValue =>
WithChartName
(nameValue),
KubernetesEnvironmentResource.cs (1)
42
/// <see cref="HelmChartOptions.
WithChartName
(string)"/> via
Aspire.Hosting.Kubernetes.Tests (11)
KubernetesDeployTests.cs (10)
175
.WithHelm(helm => helm.
WithChartName
("my-chart"));
241
helm.
WithChartName
("acme-app");
260
.WithHelm(helm => helm.
WithChartName
("first"))
261
.WithHelm(helm => helm.
WithChartName
("second"));
670
Assert.Throws<ArgumentException>(() => helm.
WithChartName
(string.Empty));
695
Assert.Throws<ArgumentException>(() => helm.
WithChartName
(value));
706
Assert.Throws<ArgumentException>(() => helm.
WithChartName
(new string('a', 251)));
719
.WithHelm(helm => helm.
WithChartName
(value));
837
helm.
WithChartName
("acme-app");
893
.WithHelm(helm => helm.
WithChartName
("custom-chart"));
KubernetesPublisherTests.cs (1)
257
.WithHelm(helm => helm.
WithChartName
("my-chart"));