5 references to Paths
Aspire.Hosting.Kubernetes (5)
KubernetesEnvironmentResource.cs (2)
715foreach (var path in ingressResource.Paths) 757var pathsByHost = ingressResource.Paths.GroupBy(p => p.Host ?? string.Empty);
KubernetesIngressExtensions.cs (2)
133builder.Resource.Paths.Add(new IngressPathConfig( 177builder.Resource.Paths.Add(new IngressPathConfig(
KubernetesIngressResource.cs (1)
94internal bool ShouldMaterialize => Paths.Count > 0 || DefaultBackend is not null;