IngressTLS class

IngressTLS describes the transport layer security associated with an ingress.

Constructors

IngressTLS({List<String>? hosts, String? secretName})
Default constructor.
const
IngressTLS.fromJson(Map<String, dynamic> json)
Creates a IngressTLS from JSON data.
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
hosts List<String>?
hosts is 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.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
secretName String?
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.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, Object>
Converts a IngressTLS instance to JSON data.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited