Skip to content
Docs Try Aspire

IngressRuleV1 Properties

Class Properties 2 members
Represents an ingress rule for Kubernetes resources.
Gets or sets the host for the ingress rule in Kubernetes.
public string Host { get; set; }
The Host property is used to specify the fully qualified domain name (FQDN) that is matched for the ingress rule. It helps in routing incoming network traffic based on the host name specified in HTTP requests. If left empty, the ingress rule applies to all incoming traffic irrespective of the host name.
Represents the HTTP ingress rule value associated with this ingress rule.
public HttpIngressRuleValueV1 Http { get; set; }
This property defines the HTTP routing rules, including paths and backend services, for managing HTTP traffic in a Kubernetes ingress resource. It specifies how requests are matched and routed based on path patterns provided in the configuration.