2021-01-03 15:33:13 +00:00
|
|
|
apiVersion: kubeadm.k8s.io/v1beta2
|
|
|
|
kind: ClusterConfiguration
|
|
|
|
metadata:
|
|
|
|
name: kubezero-clusterconfiguration
|
|
|
|
kubernetesVersion: {{ .Values.clusterVersion }}
|
|
|
|
clusterName: {{ .Values.clusterName }}
|
|
|
|
controlPlaneEndpoint: {{ .Values.apiEndpoint }}
|
|
|
|
networking:
|
|
|
|
podSubnet: 10.244.0.0/16
|
|
|
|
etcd:
|
|
|
|
local:
|
|
|
|
extraArgs:
|
2021-02-22 13:41:32 +00:00
|
|
|
listen-metrics-urls: "http://{{ .Values.listenAddress }}:2381"
|
2021-02-12 11:04:16 +00:00
|
|
|
logger: "zap"
|
2021-03-17 16:29:44 +00:00
|
|
|
# log-level: "warn"
|
2021-01-03 15:33:13 +00:00
|
|
|
{{- with .Values.etcdExtraArgs }}
|
|
|
|
{{- toYaml . | nindent 6 }}
|
|
|
|
{{- end }}
|
|
|
|
controllerManager:
|
|
|
|
extraArgs:
|
|
|
|
profiling: "false"
|
2021-02-22 13:41:32 +00:00
|
|
|
bind-address: {{ .Values.listenAddress }}
|
2021-01-03 15:33:13 +00:00
|
|
|
terminated-pod-gc-threshold: "300"
|
|
|
|
leader-elect: {{ .Values.clusterHighAvailable | quote }}
|
2021-02-12 11:04:16 +00:00
|
|
|
logging-format: json
|
2021-03-30 12:50:37 +00:00
|
|
|
feature-gates: "{{ include "kubeadm.featuregates" ( dict "return" "csv" "platform" .Values.platform ) | trimSuffix "," }}"
|
2021-01-03 15:33:13 +00:00
|
|
|
scheduler:
|
|
|
|
extraArgs:
|
|
|
|
profiling: "false"
|
2021-02-22 13:41:32 +00:00
|
|
|
bind-address: {{ .Values.listenAddress }}
|
2021-01-03 15:33:13 +00:00
|
|
|
leader-elect: {{ .Values.clusterHighAvailable | quote }}
|
2021-02-12 11:04:16 +00:00
|
|
|
logging-format: json
|
2021-03-30 12:50:37 +00:00
|
|
|
feature-gates: "{{ include "kubeadm.featuregates" ( dict "return" "csv" "platform" .Values.platform ) | trimSuffix "," }}"
|
2021-01-03 15:33:13 +00:00
|
|
|
apiServer:
|
|
|
|
certSANs:
|
|
|
|
- {{ regexSplit ":" .Values.apiEndpoint -1 | first }}
|
|
|
|
extraArgs:
|
|
|
|
etcd-servers: {{ .Values.allEtcdEndpoints }}
|
|
|
|
profiling: "false"
|
|
|
|
audit-log-path: "/var/log/kubernetes/audit.log"
|
|
|
|
audit-policy-file: /etc/kubernetes/apiserver/audit-policy.yaml
|
|
|
|
audit-log-maxage: "7"
|
|
|
|
audit-log-maxsize: "100"
|
|
|
|
audit-log-maxbackup: "3"
|
|
|
|
tls-cipher-suites: "TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384"
|
|
|
|
admission-control-config-file: /etc/kubernetes/apiserver/admission-configuration.yaml
|
2021-02-22 13:41:32 +00:00
|
|
|
{{- if eq .Values.platform "aws" }}
|
2021-01-04 14:56:41 +00:00
|
|
|
authentication-token-webhook-config-file: /etc/kubernetes/apiserver/aws-iam-authenticator.yaml
|
2021-02-22 13:41:32 +00:00
|
|
|
{{- end }}
|
2021-03-30 12:50:37 +00:00
|
|
|
feature-gates: "{{ include "kubeadm.featuregates" ( dict "return" "csv" "platform" .Values.platform ) | trimSuffix "," }}"
|
2021-01-03 15:33:13 +00:00
|
|
|
enable-admission-plugins: NodeRestriction,EventRateLimit
|
|
|
|
{{- if .Values.clusterHighAvailable }}
|
2021-03-17 16:29:44 +00:00
|
|
|
# goaway-chance: ".001"
|
2021-01-03 15:33:13 +00:00
|
|
|
{{- end }}
|
2021-02-12 11:04:16 +00:00
|
|
|
logging-format: json
|
2021-01-03 15:33:13 +00:00
|
|
|
{{- with .Values.apiExtraArgs }}
|
|
|
|
{{- toYaml . | nindent 4 }}
|
|
|
|
{{- end }}
|
|
|
|
extraVolumes:
|
|
|
|
- name: kubezero-apiserver
|
|
|
|
hostPath: /etc/kubernetes/apiserver
|
|
|
|
mountPath: /etc/kubernetes/apiserver
|
|
|
|
readOnly: true
|
|
|
|
pathType: DirectoryOrCreate
|
|
|
|
- name: audit-log
|
|
|
|
hostPath: /var/log/kubernetes
|
|
|
|
mountPath: /var/log/kubernetes
|
|
|
|
pathType: DirectoryOrCreate
|