case class Ingress(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[IngressSpec] = Optional.Absent, status: Optional[IngressStatus] = Optional.Absent) extends Product with Serializable
Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Ingress
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new Ingress(metadata: Optional[ObjectMeta] = Optional.Absent, spec: Optional[IngressSpec] = Optional.Absent, status: Optional[IngressStatus] = Optional.Absent)
Value Members
-
def
getMetadata: IO[K8sFailure, ObjectMeta]
Gets metadata.
Gets metadata.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getSpec: IO[K8sFailure, IngressSpec]
Gets spec.
Gets spec.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
-
def
getStatus: IO[K8sFailure, IngressStatus]
Gets status.
Gets status.
If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.
- val metadata: Optional[ObjectMeta]
- val spec: Optional[IngressSpec]
- val status: Optional[IngressStatus]