public enum IngressControllerMode extends Enum<IngressControllerMode>
| Enum Constant and Description |
|---|
DEFAULT
Istio ingress controller will act on ingress resources that do not
contain any annotation or whose annotations match the value
specified in the ingress_class parameter described earlier.
|
OFF
Disables Istio ingress controller.
|
STRICT
Istio ingress controller will only act on ingress resources whose
annotations match the value specified in the ingress_class parameter
described earlier.
|
| Modifier and Type | Method and Description |
|---|---|
static IngressControllerMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IngressControllerMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IngressControllerMode OFF
public static final IngressControllerMode DEFAULT
public static final IngressControllerMode STRICT
public static IngressControllerMode[] values()
for (IngressControllerMode c : IngressControllerMode.values()) System.out.println(c);
public static IngressControllerMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017–2018 Red Hat. All rights reserved.