Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Kubeadm ¶
type Kubeadm struct { ContainerRuntime string `yaml:"containerRuntime,omitempty"` Configuration string `yaml:"configuration,omitempty"` Init bool `yaml:"init,omitempty"` }
Kubeadm describes the set of configuration options available for kubeadm.
type Kubelet ¶
type Kubelet struct { Labels map[string]string `yaml:"labels,omitempty"` FeatureGates map[string]string `yaml:"featureGates,omitempty"` ExtraArgs map[string]string `yaml:"extraArgs,omitempty"` }
Kubelet describes the set of configuration options available for the kubelet.
type KubernetesSecurity ¶
type KubernetesSecurity struct {
CA *x509.PEMEncodedCertificateAndKey `yaml:"ca"`
}
KubernetesSecurity represents the set of security options specific to Kubernetes.
type Networking ¶
type Networking struct { OS struct{} `yaml:"os"` Kubernetes struct{} `yaml:"kubernetes"` }
Networking represents the set of options available to configure networking.
type OSSecurity ¶
type OSSecurity struct { CA *x509.PEMEncodedCertificateAndKey `yaml:"ca"` Identity *x509.PEMEncodedCertificateAndKey `yaml:"identity"` }
OSSecurity represents the set of security options specific to the OS.
type ROTD ¶
type ROTD struct { Username string `yaml:"username"` Password string `yaml:"password"` Endpoints []string `yaml:"endpoints,omitempty"` }
ROTD describes the configuration of the Root of Trust (RoT) service. The username and password are used by master nodes, and worker nodes. The master nodes use them to authenticate clients, while the workers use them to authenticate as a client. The endpoints should only be specified in the worker user data, and should include all master nodes participating as a RoT.
type Security ¶
type Security struct { OS *OSSecurity `yaml:"os"` Kubernetes *KubernetesSecurity `yaml:"kubernetes"` }
Security represents the set of options available to configure security.
type Services ¶
type Services struct { Kubeadm *Kubeadm `yaml:"kubeadm"` Kubelet *Kubelet `yaml:"kubelet"` ROTD *ROTD `yaml:"rotd"` }
Services represents the set of services available to configure.