Skip to content
Docs Try Aspire

IngressBackendV1

Class sealed net10.0
📦 Aspire.Hosting.Kubernetes v13.1.2-preview.1.26125.13
Represents a backend for a Kubernetes ingress resource.
namespace Aspire.Hosting.Kubernetes.Resources;
public sealed class IngressBackendV1
{
// ...
}
This class defines the configuration of a backend to which ingress traffic is routed. It supports two types of backend targets: 1. A Kubernetes service, encapsulated in the IngressBackendV1.Service property. 2. A specific resource, defined using the IngressBackendV1.Resource property.
View all constructors
Resourceget; set
Represents a reference to a Kubernetes resource that is used as a backend for Ingress in the V1 API.
Serviceget; set
Gets or sets the backend service information associated with the ingress resource. This includes the name of the service and its corresponding port configuration.
View all properties