27 lines
775 B
YAML
27 lines
775 B
YAML
apiVersion: kubeadm.k8s.io/v1beta3
|
|
kind: InitConfiguration
|
|
localAPIEndpoint:
|
|
advertiseAddress: {{ .Values.listenAddress }}
|
|
bindPort: {{ .Values.api.listenPort }}
|
|
{{- with .Values.patches }}
|
|
patches:
|
|
directory: {{ . }}
|
|
{{- end }}
|
|
nodeRegistration:
|
|
criSocket: "unix:///var/run/crio/crio.sock"
|
|
ignorePreflightErrors:
|
|
- DirAvailable--var-lib-etcd
|
|
- DirAvailable--etc-kubernetes-manifests
|
|
- FileAvailable--etc-kubernetes-pki-ca.crt
|
|
- FileAvailable--etc-kubernetes-manifests-etcd.yaml
|
|
- Swap
|
|
- KubeletVersion
|
|
kubeletExtraArgs:
|
|
node-labels: {{ .Values.nodeLabels | quote }}
|
|
{{- with .Values.providerID }}
|
|
provider-id: {{ . }}
|
|
{{- end }}
|
|
{{- if ne .Values.listenAddress "0.0.0.0" }}
|
|
node-ip: {{ .Values.listenAddress }}
|
|
{{- end }}
|