13 references to WithChartName
Aspire.Hosting.Kubernetes (2)
HelmChartOptions.cs (1)
222
string nameValue =>
WithChartName
(nameValue),
KubernetesEnvironmentResource.cs (1)
40
/// <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"));
702
Assert.Throws<ArgumentException>(() => helm.
WithChartName
(string.Empty));
727
Assert.Throws<ArgumentException>(() => helm.
WithChartName
(value));
738
Assert.Throws<ArgumentException>(() => helm.
WithChartName
(new string('a', 251)));
751
.WithHelm(helm => helm.
WithChartName
(value));
869
helm.
WithChartName
("acme-app");
925
.WithHelm(helm => helm.
WithChartName
("custom-chart"));
KubernetesPublisherTests.cs (1)
257
.WithHelm(helm => helm.
WithChartName
("my-chart"));