Class IngressSpec
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.networking.v1beta1.IngressSpec
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<IngressSpecBuilder>
,io.fabric8.kubernetes.api.model.KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class IngressSpec extends Object implements io.fabric8.kubernetes.api.builder.Editable<IngressSpecBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
IngressSpec describes the Ingress the user wishes to exist.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IngressSpec()
No args constructor for use in serializationIngressSpec(IngressBackend backend, String ingressClassName, List<IngressRule> rules, List<IngressTLS> tls)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IngressSpecBuilder
edit()
Map<String,Object>
getAdditionalProperties()
IngressBackend
getBackend()
IngressSpec describes the Ingress the user wishes to exist.String
getIngressClassName()
IngressClassName is the name of the IngressClass cluster resource.List<IngressRule>
getRules()
A list of host rules used to configure the Ingress.List<IngressTLS>
getTls()
TLS configuration.void
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setBackend(IngressBackend backend)
IngressSpec describes the Ingress the user wishes to exist.void
setIngressClassName(String ingressClassName)
IngressClassName is the name of the IngressClass cluster resource.void
setRules(List<IngressRule> rules)
A list of host rules used to configure the Ingress.void
setTls(List<IngressTLS> tls)
TLS configuration.IngressSpecBuilder
toBuilder()
-
-
-
Constructor Detail
-
IngressSpec
public IngressSpec()
No args constructor for use in serialization
-
IngressSpec
public IngressSpec(IngressBackend backend, String ingressClassName, List<IngressRule> rules, List<IngressTLS> tls)
-
-
Method Detail
-
getBackend
public IngressBackend getBackend()
IngressSpec describes the Ingress the user wishes to exist.
-
setBackend
public void setBackend(IngressBackend backend)
IngressSpec describes the Ingress the user wishes to exist.
-
getIngressClassName
public String getIngressClassName()
IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.
-
setIngressClassName
public void setIngressClassName(String ingressClassName)
IngressClassName is the name of the IngressClass cluster resource. The associated IngressClass defines which controller will implement the resource. This replaces the deprecated `kubernetes.io/ingress.class` annotation. For backwards compatibility, when that annotation is set, it must be given precedence over this field. The controller may emit a warning if the field and annotation have different values. Implementations of this API should ignore Ingresses without a class specified. An IngressClass resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation.
-
getRules
public List<IngressRule> getRules()
A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.
-
setRules
public void setRules(List<IngressRule> rules)
A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.
-
getTls
public List<IngressTLS> getTls()
TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.
-
setTls
public void setTls(List<IngressTLS> tls)
TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.
-
edit
public IngressSpecBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<IngressSpecBuilder>
-
toBuilder
public IngressSpecBuilder toBuilder()
-
-