case class IngressTLS(hosts: Optional[Vector[String]] = Optional.Absent, secretName: Optional[String] = Optional.Absent) extends Product with Serializable

IngressTLS describes the transport layer security associated with an Ingress.

hosts

Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.

secretName

SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IngressTLS
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IngressTLS(hosts: Optional[Vector[String]] = Optional.Absent, secretName: Optional[String] = Optional.Absent)

    hosts

    Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.

    secretName

    SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.

Value Members

  1. def getHosts: IO[K8sFailure, Vector[String]]

    Hosts are a list of hosts included in the TLS certificate.

    Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  2. def getSecretName: IO[K8sFailure, String]

    SecretName is the name of the secret used to terminate TLS traffic on port 443.

    SecretName is the name of the secret used to terminate TLS traffic on port 443. Field is left optional to allow TLS routing based on SNI hostname alone. If the SNI host in a listener conflicts with the "Host" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  3. val hosts: Optional[Vector[String]]
  4. val secretName: Optional[String]