KubernetesClusterKubeAdminConfig

data class KubernetesClusterKubeAdminConfig(val clientCertificate: String? = null, val clientKey: String? = null, val clusterCaCertificate: String? = null, val host: String? = null, val password: String? = null, val username: String? = null)

Constructors

Link copied to clipboard
constructor(clientCertificate: String? = null, clientKey: String? = null, clusterCaCertificate: String? = null, host: String? = null, password: String? = null, username: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Base64 encoded public certificate used by clients to authenticate to the Kubernetes cluster.

Link copied to clipboard
val clientKey: String? = null

Base64 encoded private key used by clients to authenticate to the Kubernetes cluster.

Link copied to clipboard

Base64 encoded public CA certificate used as the root of trust for the Kubernetes cluster.

Link copied to clipboard
val host: String? = null

The Kubernetes cluster server host.

Link copied to clipboard
val password: String? = null

A password or token used to authenticate to the Kubernetes cluster.

Link copied to clipboard
val username: String? = null

A username used to authenticate to the Kubernetes cluster.