IngressServiceBackendV1
Class sealed net10.0
Represents a backend service configuration in a Kubernetes ingress resource.
namespace Aspire.Hosting.Kubernetes.Resources;
public sealed class IngressServiceBackendV1{ // ...}Remarks
Section titled Remarks This class defines the service-based backend for routing traffic in Kubernetes Ingress configurations. It specifies the service name and the port of the service that will handle incoming traffic.
Constructors1
Section titled ConstructorsProperties2
Section titled PropertiesNameget; setstring Gets or sets the name of the referenced Kubernetes service. Represents the identifier of the service that the backend points to.
Portget; set Represents the port information for a backend service within an ingress resource. This property defines the port details as a
ServiceBackendPortV1 object, which includes the port number and an optional name associated with the port.