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