IngressBackendV1
Class sealed net10.0
Represents a backend for a Kubernetes ingress resource.
namespace Aspire.Hosting.Kubernetes.Resources;
public sealed class IngressBackendV1{ // ...}Remarks
Section titled Remarks 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. Constructors1
Section titled ConstructorsProperties2
Section titled PropertiesResourceget; 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.