ManagedKubernetesCertificateAuthority

data class ManagedKubernetesCertificateAuthority(val clientCert: String? = null, val clientKey: String? = null, val clusterCert: String? = null)

Constructors

Link copied to clipboard
constructor(clientCert: String? = null, clientKey: String? = null, clusterCert: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val clientCert: String? = null

The base64 encoded client certificate data required to communicate with your cluster. Add this to the client-certificate-data section of the kubeconfig file for your cluster.

Link copied to clipboard
val clientKey: String? = null

The base64 encoded client key data required to communicate with your cluster. Add this to the client-key-data section of the kubeconfig file for your cluster.

Link copied to clipboard
val clusterCert: String? = null

The base64 encoded cluster certificate data required to communicate with your cluster. Add this to the certificate-authority-data section of the kubeconfig file for your cluster.