case class IngressSpec(defaultBackend: Optional[IngressBackend] = Optional.Absent, ingressClassName: Optional[String] = Optional.Absent, rules: Optional[Vector[IngressRule]] = Optional.Absent, tls: Optional[Vector[IngressTLS]] = Optional.Absent) extends Product with Serializable
IngressSpec describes the Ingress the user wishes to exist.
- 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.- 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.
- 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.
- Alphabetic
- By Inheritance
- IngressSpec
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
IngressSpec(defaultBackend: Optional[IngressBackend] = Optional.Absent, ingressClassName: Optional[String] = Optional.Absent, rules: Optional[Vector[IngressRule]] = Optional.Absent, tls: Optional[Vector[IngressTLS]] = Optional.Absent)
- 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.- 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.
- 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.
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
- val defaultBackend: Optional[IngressBackend]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
getDefaultBackend: IO[K8sFailure, IngressBackend]
Gets defaultBackend.
Gets defaultBackend.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getIngressClassName: IO[K8sFailure, String]
IngressClassName is the name of the IngressClass cluster resource.
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.If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getRules: IO[K8sFailure, Vector[IngressRule]]
A list of host rules used to configure the Ingress.
A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getTls: IO[K8sFailure, Vector[IngressTLS]]
TLS configuration.
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.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val ingressClassName: Optional[String]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val rules: Optional[Vector[IngressRule]]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- val tls: Optional[Vector[IngressTLS]]
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated