Uses of Class
org.cdk8s.plus24.IngressBackend
-
Packages that use IngressBackend Package Description org.cdk8s.plus24 cdk8s+ (cdk8s-plus) -
-
Uses of IngressBackend in org.cdk8s.plus24
Methods in org.cdk8s.plus24 that return IngressBackend Modifier and Type Method Description static IngressBackend
IngressBackend. fromResource(IResource resource)
A Resource backend is an ObjectRef to another Kubernetes resource within the same namespace as the Ingress object.static IngressBackend
IngressBackend. fromService(Service serv)
A Kubernetes `Service` to use as the backend for this path.static IngressBackend
IngressBackend. fromService(Service serv, ServiceIngressBackendOptions options)
A Kubernetes `Service` to use as the backend for this path.IngressBackend
IngressRule. getBackend()
Backend defines the referenced service endpoint to which the traffic will be forwarded to.IngressBackend
IngressRule.Jsii$Proxy. getBackend()
default IngressBackend
IngressProps. getDefaultBackend()
The default backend services requests that do not match any rule.IngressBackend
IngressProps.Jsii$Proxy. getDefaultBackend()
Methods in org.cdk8s.plus24 with parameters of type IngressBackend Modifier and Type Method Description void
Ingress. addDefaultBackend(IngressBackend backend)
Defines the default backend for this ingress.void
Ingress. addHostDefaultBackend(String host, IngressBackend backend)
Specify a default backend for a specific host name.void
Ingress. addHostRule(String host, String path, IngressBackend backend)
Adds an ingress rule applied to requests to a specific host and a specific HTTP path (the `Host` header matches this value).void
Ingress. addHostRule(String host, String path, IngressBackend backend, HttpIngressPathType pathType)
Adds an ingress rule applied to requests to a specific host and a specific HTTP path (the `Host` header matches this value).void
Ingress. addRule(String path, IngressBackend backend)
Adds an ingress rule applied to requests sent to a specific HTTP path.void
Ingress. addRule(String path, IngressBackend backend, HttpIngressPathType pathType)
Adds an ingress rule applied to requests sent to a specific HTTP path.IngressRule.Builder
IngressRule.Builder. backend(IngressBackend backend)
Sets the value ofIngressRule.getBackend()
Ingress.Builder
Ingress.Builder. defaultBackend(IngressBackend defaultBackend)
The default backend services requests that do not match any rule.IngressProps.Builder
IngressProps.Builder. defaultBackend(IngressBackend defaultBackend)
Sets the value ofIngressProps.getDefaultBackend()
-