Class ClusterEndpoint
Contains information about how to communicate with a kubernetes cluster
Inherited Members
Namespace: k8s.KubeConfigModels
Assembly: KubernetesClient.dll
Syntax
public class ClusterEndpoint
Constructors
View SourceClusterEndpoint()
Declaration
public ClusterEndpoint()
Properties
View SourceCertificateAuthority
Gets or sets the path to a cert file for the certificate authority.
Declaration
public string CertificateAuthority { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
CertificateAuthorityData
Gets or sets =PEM-encoded certificate authority certificates. Overrides CertificateAuthority.
Declaration
public string CertificateAuthorityData { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
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> |
Server
Gets or sets the address of the kubernetes cluster (https://hostname:port).
Declaration
public string Server { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
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 |
TlsServerName
Gets or sets a value to override the TLS server name.
Declaration
public string TlsServerName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |