Package io.quarkus.kubernetes.deployment
Interface IngressConfig.IngressRuleConfig
- Enclosing interface:
- IngressConfig
public static interface IngressConfig.IngressRuleConfig
-
Method Summary
Modifier and TypeMethodDescriptionhost()The host under which the rule is going to be used.path()The path under which the rule is going to be used.pathType()The path type strategy to use by the Ingress rule.The service name to be used by this Ingress rule.The service port name to be used by this Ingress rule.The service port number to be used by this Ingress rule.
-
Method Details
-
host
String host()The host under which the rule is going to be used. -
path
The path under which the rule is going to be used. Default is "/". -
pathType
The path type strategy to use by the Ingress rule. Default is "Prefix". -
serviceName
The service name to be used by this Ingress rule. Default is the generated service name of the application. -
servicePortName
The service port name to be used by this Ingress rule. Default is the port name of the generated service of the application. -
servicePortNumber
The service port number to be used by this Ingress rule. This is only used when the servicePortName is not set.
-