Interface IngressConfig.IngressRuleConfig

Enclosing interface:
IngressConfig

public static interface IngressConfig.IngressRuleConfig
  • Method Details

    • host

      String host()
      The host under which the rule is going to be used.
    • path

      @WithDefault("/") String path()
      The path under which the rule is going to be used. Default is "/".
    • pathType

      @WithDefault("Prefix") String pathType()
      The path type strategy to use by the Ingress rule. Default is "Prefix".
    • serviceName

      Optional<String> serviceName()
      The service name to be used by this Ingress rule. Default is the generated service name of the application.
    • servicePortName

      Optional<String> 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

      Optional<Integer> servicePortNumber()
      The service port number to be used by this Ingress rule. This is only used when the servicePortName is not set.