IngressTLSV1 Properties
Class Properties 2 members
Represents the TLS configuration for an Ingress resource in Kubernetes (networking.k8s.io/v1).
Gets a list of hostnames associated with the ingress TLS configuration.
public List<string> Hosts { get; }Remarks
This property represents a collection of hosts that are specified for the ingress TLS configuration. These hosts are used for secure transport and typically represent domain names that are covered by the associated TLS secret. The list may contain multiple entries depending on the assigned hosts.
Represents the name of the Kubernetes Secret containing the TLS certificate and key. This property is used to secure communication for the specified hosts in an ingress resource.
public string SecretName { get; set; }