Show / Hide Table of Contents

Class ClusterEndpoint

Contains information about how to communicate with a kubernetes cluster

Inheritance
object
ClusterEndpoint
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: k8s.KubeConfigModels
Assembly: KubernetesClient.dll
Syntax
public class ClusterEndpoint

Constructors

View Source

ClusterEndpoint()

Declaration
public ClusterEndpoint()

Properties

View Source

CertificateAuthority

Gets or sets the path to a cert file for the certificate authority.

Declaration
public string CertificateAuthority { get; set; }
Property Value
Type Description
string
View Source

CertificateAuthorityData

Gets or sets =PEM-encoded certificate authority certificates. Overrides CertificateAuthority.

Declaration
public string CertificateAuthorityData { get; set; }
Property Value
Type Description
string
View Source

Extensions

Gets or sets additional information. This is useful for extenders so that reads and writes don't clobber unknown fields.

Declaration
public IEnumerable<NamedExtension> Extensions { get; set; }
Property Value
Type Description
IEnumerable<NamedExtension>
View Source

Server

Gets or sets the address of the kubernetes cluster (https://hostname:port).

Declaration
public string Server { get; set; }
Property Value
Type Description
string
View Source

SkipTlsVerify

Gets or sets a value indicating whether to skip the validity check for the server's certificate. This will make your HTTPS connections insecure.

Declaration
public bool SkipTlsVerify { get; set; }
Property Value
Type Description
bool
View Source

TlsServerName

Gets or sets a value to override the TLS server name.

Declaration
public string TlsServerName { get; set; }
Property Value
Type Description
string
  • View Source
In this article
Back to top Generated by DocFX