22 references to WithHelmValue
AksDemo.AppHost (4)
AppHost.cs (4)
71.WithHelmValue("crds.enabled", "true") 72.WithHelmValue("config.apiVersion", "controller.config.cert-manager.io/v1alpha1") 73.WithHelmValue("config.kind", "ControllerConfiguration") 74.WithHelmValue("config.enableGatewayAPI", "true")
Aspire.Hosting.Azure.Kubernetes (1)
AzureKubernetesIngressExtensions.cs (1)
102/// with the same <see cref="KubernetesHelmChartExtensions.WithHelmValue"/>,
Aspire.Hosting.Azure.Kubernetes.Tests (2)
AzureKubernetesHelmChartTests.cs (2)
48.WithHelmValue("crds.enabled", "true") 49.WithHelmValue("config.enableGatewayAPI", "true");
Aspire.Hosting.Kubernetes (6)
CertManagerExtensions.cs (4)
111.WithHelmValue("crds.enabled", "true") 115.WithHelmValue("config.apiVersion", "controller.config.cert-manager.io/v1alpha1") 116.WithHelmValue("config.kind", "ControllerConfiguration") 117.WithHelmValue("config.enableGatewayAPI", "true")
KubernetesHelmChartExtensions.cs (1)
40/// Use <see cref="WithNamespace"/> to override the namespace, and <see cref="WithHelmValue"/>
KubernetesHelmChartResource.cs (1)
16/// and configure it with values using <see cref="KubernetesHelmChartExtensions.WithHelmValue"/>.
Aspire.Hosting.Kubernetes.Tests (9)
KubernetesHelmChartTests.cs (9)
37.WithHelmValue("crds.enabled", "true") 38.WithHelmValue("config.enableGatewayAPI", "true"); 265Assert.Throws<ArgumentException>(() => chart.WithHelmValue(key, "value")); 278Assert.Throws<ArgumentException>(() => chart.WithHelmValue("key", value)); 288.WithHelmValue("config.greeting", "hello world!") 289.WithHelmValue("config.list", "a,b,c"); 302.WithHelmValue("args[0]", "--foo"); 540.WithHelmValue("key", "value1") 541.WithHelmValue("key", "value2");