-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path01_osp-ubuntu-edge.yaml
791 lines (727 loc) · 29.7 KB
/
01_osp-ubuntu-edge.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
apiVersion: operatingsystemmanager.k8c.io/v1alpha1
kind: OperatingSystemProfile
metadata:
name: osp-ubuntu-edge
namespace: kube-system
spec:
bootstrapConfig:
files:
- content:
inline:
data: |
#!/bin/bash
set -xeuo pipefail
while ! "$@"; do
sleep 1
done
encoding: b64
path: /opt/bin/supervise.sh
permissions: 755
- content:
inline:
data: "#!/bin/bash\nset -xeuo pipefail\n\n# Check if bootstrap phase has
already completed. This is required when we run `cloud-init init` again
since it tries to re-run\n# the bootstrap cloud-config as well, from the
userdata.\nif [ -f /etc/bootstrap-complete ]; then\n exit 0\nfi\n\n{{-
/* Configure proxy as the first step to ensure that all the phases of
provisioning respect the proxy environment. */}}\n{{- template \"configureProxyScript\"
}}\n\nexport DEBIAN_FRONTEND=noninteractive\napt update && apt install
-y curl jq\ncurl -s -k -v --header 'Authorization: Bearer {{ .Token }}'\t{{
.ServerURL }}/api/v1/namespaces/cloud-init-settings/secrets/{{ .SecretName
}} | jq '.data[\"cloud-config\"]' -r| base64 -d > /etc/cloud/cloud.cfg.d/{{
.SecretName }}.cfg\ncloud-init clean\n\n{{- /* The default cloud-init
configurations files have a bug on Digital Ocean that causes the machine
to be in-accessible on the 2nd cloud-init and in case of Hetzner, ipv6
addresses are missing. Hence we disable network configuration. */}}\n{{-
if (or (eq .CloudProviderName \"digitalocean\") (eq .CloudProviderName
\"hetzner\")) }}\nrm /etc/netplan/50-cloud-init.yaml\necho \"network:
{config: disabled}\" > /etc/cloud/cloud.cfg.d/99-custom-networking.cfg\n{{-
end }}\n\ncloud-init --file /etc/cloud/cloud.cfg.d/{{ .SecretName }}.cfg
init\nsystemctl daemon-reload\n\n{{- if eq .CloudProviderName \"digitalocean\"
}}\nnetplan generate\nnetplan apply\n{{- end }}\n\nsystemctl daemon-reload\n\n#
cloud-init should only run on the first boot. From this point forward
we don't need cloud-init anymore.\nsystemctl disable cloud-init\ntouch
/etc/cloud/cloud-init.disabled\n# Bootstrap phase for the machine is complete.\ntouch
/etc/bootstrap-complete\nsystemctl disable bootstrap.service\n# Start
provisioning phase for the machine.\nsystemctl restart setup.service\n"
encoding: b64
path: /opt/bin/bootstrap
permissions: 755
- content:
inline:
data: |
[Install]
WantedBy=multi-user.target
[Unit]
Requires=network-online.target
After=network-online.target
[Service]
Type=oneshot
RemainAfterExit=true
EnvironmentFile=-/etc/environment
ExecStart=/opt/bin/supervise.sh /opt/bin/bootstrap
encoding: b64
path: /etc/systemd/system/bootstrap.service
permissions: 644
modules:
runcmd:
- systemctl restart bootstrap.service
- systemctl daemon-reload
templates:
configureProxyScript: |-
{{- if .HTTPProxy }}
cat <<EOF | tee -a /etc/environment
HTTP_PROXY={{ .HTTPProxy }}
http_proxy={{ .HTTPProxy }}
HTTPS_PROXY={{ .HTTPProxy }}
https_proxy={{ .HTTPProxy }}
EOF
{{- end }}
{{- if .NoProxy }}
cat <<EOF | tee -a /etc/environment
NO_PROXY={{ .NoProxy }}
no_proxy={{ .NoProxy }}
EOF
{{- end }}
sudo mkdir -p /etc/apt/apt.conf.d
cat <<EOF | sudo tee /etc/apt/apt.conf.d/proxy.conf
{{- if .HTTPProxy }}
Acquire::https::Proxy "{{ .HTTPProxy }}";
Acquire::http::Proxy "{{ .HTTPProxy }}";
{{- end }}
EOF
source /etc/environment
osName: ubuntu
osVersion: "20.04"
provisioningConfig:
files:
- content:
inline:
data: |
#!/usr/bin/env bash
# Copyright 2016 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This script is for master and node instance health monitoring, which is
# packed in kube-manifest tarball. It is executed through a systemd service
# in cluster/gce/gci/<master/node>.yaml. The env variables come from an env
# file provided by the systemd service.
# This script is a slightly adjusted version of
# https://github.com/kubernetes/kubernetes/blob/e1a1aa211224fcd9b213420b80b2ae680669683d/cluster/gce/gci/health-monitor.sh
# Adjustments are:
# * Kubelet health port is 10248 not 10255
# * Removal of all all references to the KUBE_ENV file
set -o nounset
set -o pipefail
# We simply kill the process when there is a failure. Another systemd service will
# automatically restart the process.
function container_runtime_monitoring() {
local -r max_attempts=5
local attempt=1
local -r container_runtime_name="${CONTAINER_RUNTIME_NAME:-docker}"
# We still need to use 'docker ps' when container runtime is "docker". This is because
# dockershim is still part of kubelet today. When kubelet is down, crictl pods
# will also fail, and docker will be killed. This is undesirable especially when
# docker live restore is disabled.
local healthcheck_command="docker ps"
if [[ "${CONTAINER_RUNTIME:-docker}" != "docker" ]]; then
healthcheck_command="crictl pods"
fi
# Container runtime startup takes time. Make initial attempts before starting
# killing the container runtime.
until timeout 60 ${healthcheck_command} > /dev/null; do
if ((attempt == max_attempts)); then
echo "Max attempt ${max_attempts} reached! Proceeding to monitor container runtime healthiness."
break
fi
echo "$attempt initial attempt \"${healthcheck_command}\"! Trying again in $attempt seconds..."
sleep "$((2 ** attempt++))"
done
while true; do
if ! timeout 60 ${healthcheck_command} > /dev/null; then
echo "Container runtime ${container_runtime_name} failed!"
if [[ "$container_runtime_name" == "docker" ]]; then
# Dump stack of docker daemon for investigation.
# Log file name looks like goroutine-stacks-TIMESTAMP and will be saved to
# the exec root directory, which is /var/run/docker/ on Ubuntu and COS.
pkill -SIGUSR1 dockerd
fi
systemctl kill --kill-who=main "${container_runtime_name}"
# Wait for a while, as we don't want to kill it again before it is really up.
sleep 120
else
sleep "${SLEEP_SECONDS}"
fi
done
}
function kubelet_monitoring() {
echo "Wait for 2 minutes for kubelet to be functional"
sleep 120
local -r max_seconds=10
local output=""
while true; do
local failed=false
if journalctl -u kubelet -n 1 | grep -q "use of closed network connection"; then
failed=true
echo "Kubelet stopped posting node status. Restarting"
elif ! output=$(curl -m "${max_seconds}" -f -s -S http://127.0.0.1:10248/healthz 2>&1); then
failed=true
# Print the response and/or errors.
echo "$output"
fi
if [[ "$failed" == "true" ]]; then
echo "Kubelet is unhealthy!"
systemctl kill kubelet
# Wait for a while, as we don't want to kill it again before it is really up.
sleep 60
else
sleep "${SLEEP_SECONDS}"
fi
done
}
############## Main Function ################
if [[ "$#" -ne 1 ]]; then
echo "Usage: health-monitor.sh <container-runtime/kubelet>"
exit 1
fi
SLEEP_SECONDS=10
component=$1
echo "Start kubernetes health monitoring for ${component}"
if [[ "${component}" == "container-runtime" ]]; then
container_runtime_monitoring
elif [[ "${component}" == "kubelet" ]]; then
kubelet_monitoring
else
echo "Health monitoring for component ${component} is not supported!"
fi
encoding: b64
path: /opt/bin/health-monitor.sh
permissions: 755
- content:
inline:
data: |
[Journal]
SystemMaxUse=5G
encoding: b64
path: /etc/systemd/journald.conf.d/max_disk_use.conf
permissions: 644
- content:
inline:
data: |
#!/usr/bin/env bash
set -euo pipefail
modprobe ip_vs
modprobe ip_vs_rr
modprobe ip_vs_wrr
modprobe ip_vs_sh
if modinfo nf_conntrack_ipv4 &> /dev/null; then
modprobe nf_conntrack_ipv4
else
modprobe nf_conntrack
fi
encoding: b64
path: /opt/load-kernel-modules.sh
permissions: 755
- content:
inline:
data: |
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
kernel.panic_on_oops = 1
kernel.panic = 10
net.ipv4.ip_forward = 1
vm.overcommit_memory = 1
fs.inotify.max_user_watches = 1048576
fs.inotify.max_user_instances = 8192
encoding: b64
path: /etc/sysctl.d/k8s.conf
permissions: 644
- content:
inline:
data: |
# Added by kubermatic machine-controller
# Enable cgroups memory and swap accounting
GRUB_CMDLINE_LINUX="cgroup_enable=memory swapaccount=1"
encoding: b64
path: /etc/default/grub.d/60-swap-accounting.cfg
permissions: 644
- content:
inline:
data: |
#!/bin/bash
set -xeuo pipefail
if systemctl is-active ufw; then systemctl stop ufw; fi
systemctl mask ufw
{{- /* As we added some modules and don't want to reboot, restart the service */}}
systemctl restart systemd-modules-load.service
sysctl --system
# # Override hostname if /etc/machine-name exists
# if [ -x "$(command -v hostnamectl)" ] && [ -s /etc/machine-name ]; then
# machine_name=$(cat /etc/machine-name)
# hostnamectl set-hostname ${machine_name}
# fi
apt-get update
DEBIAN_FRONTEND=noninteractive apt-get -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install -y \
curl \
ca-certificates \
ceph-common \
cifs-utils \
conntrack \
e2fsprogs \
ebtables \
ethtool \
glusterfs-client \
iptables \
jq \
kmod \
openssh-client \
nfs-common \
socat \
util-linux \
{{- if or (eq .CloudProviderName "vsphere") (eq .CloudProviderName "vmware-cloud-director") }}
open-vm-tools \
{{- end }}
{{- if eq .CloudProviderName "nutanix" }}
open-iscsi \
{{- end }}
ipvsadm
{{- /* iscsid service is required on Nutanix machines for CSI driver to attach volumes. */}}
{{- if eq .CloudProviderName "nutanix" }}
systemctl enable --now iscsid
{{ end }}
{{- template "containerRuntimeInstallation" }}
{{- template "safeDownloadBinariesScript" }}
# set kubelet nodeip environment variable
/opt/bin/setup_net_env.sh
{{- /* fetch kubelet bootstrapping kubeconfig */}}
curl -s -k -v --header 'Authorization: Bearer {{ .Token }}' {{ .ServerURL }}/api/v1/namespaces/cloud-init-settings/secrets/{{ .BootstrapKubeconfigSecretName }} | jq '.data["kubeconfig"]' -r| base64 -d > /etc/kubernetes/bootstrap-kubelet.conf
systemctl enable --now kubelet
systemctl enable --now --no-block kubelet-healthcheck.service
systemctl disable setup.service
encoding: b64
path: /opt/bin/setup
permissions: 755
- content:
inline:
data: |
[Unit]
After={{ .ContainerRuntime }}.service
Requires={{ .ContainerRuntime }}.service
Description=kubelet: The Kubernetes Node Agent
Documentation=https://kubernetes.io/docs/home/
[Service]
User=root
Restart=always
StartLimitInterval=0
RestartSec=10
CPUAccounting=true
MemoryAccounting=true
Environment="PATH=/opt/bin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin/"
EnvironmentFile=-/etc/environment
ExecStartPre=/bin/bash /opt/disable-swap.sh
ExecStartPre=/bin/bash /opt/load-kernel-modules.sh
ExecStartPre=/bin/bash /opt/bin/setup_net_env.sh
ExecStart=/opt/bin/kubelet $KUBELET_EXTRA_ARGS \
--bootstrap-kubeconfig=/etc/kubernetes/bootstrap-kubelet.conf \
--kubeconfig=/var/lib/kubelet/kubeconfig \
--config=/etc/kubernetes/kubelet.conf \
--cert-dir=/etc/kubernetes/pki \
{{- if ne .CloudProviderName "aws" }}
{{- /* --hostname-override=${KUBELET_HOSTNAME} \ */}}
{{- else if and (eq .CloudProviderName "aws") (.ExternalCloudProvider) }}
{{- /* --hostname-override=${KUBELET_HOSTNAME} \ */}}
{{- end }}
--exit-on-lock-contention \
--lock-file=/tmp/kubelet.lock \
{{- if .PauseImage }}
--pod-infra-container-image={{ .PauseImage }} \
{{- end }}
{{- if .InitialTaints }}
--register-with-taints={{- .InitialTaints }} \
{{- end }}
{{- if eq .ContainerRuntime "containerd" }}
--container-runtime=remote \
--container-runtime-endpoint=unix:///run/containerd/containerd.sock \
{{- end }}
{{- /* If external or in-tree CCM is in use we don't need to set --node-ip as the cloud provider will know what IPs to return. */}}
{{- if not (and (or (eq .NetworkIPFamily "IPv4+IPv6") (eq .NetworkIPFamily "IPv6+IPv4")) (or (.InTreeCCMAvailable) (.ExternalCloudProvider))) }}
--node-ip ${KUBELET_NODE_IP}
{{- end }}
[Install]
WantedBy=multi-user.target
encoding: b64
path: /etc/systemd/system/kubelet.service
permissions: 644
- content:
inline:
data: |
[Service]
Environment="KUBELET_EXTRA_ARGS=--resolv-conf=/run/systemd/resolve/resolv.conf"
encoding: b64
path: /etc/systemd/system/kubelet.service.d/extras.conf
permissions: 644
- content:
inline:
data: |
{{ .CloudConfig }}
encoding: b64
path: /etc/kubernetes/cloud-config
permissions: 600
- content:
inline:
data: |
#!/usr/bin/env bash
echodate() {
echo "[$(date -Is)]" "$@"
}
# get the default interface IP address
{{- if eq .NetworkIPFamily "IPv6" }}
DEFAULT_IFC_IP=$(ip -o -6 route get 1:: | grep -oP "src \K\S+")
{{- else if eq .NetworkIPFamily "IPv4+IPv6" }}
DEFAULT_IFC_IPv4=$(ip -o route get 1 | grep -oP "src \K\S+")
DEFAULT_IFC_IPv6=$(ip -o -6 route get 1:: | grep -oP "src \K\S+")
if [ -z "${DEFAULT_IFC_IPv6}" ]
then
echodate "Failed to get IPv6 address for the default route interface"
exit 1
fi
DEFAULT_IFC_IP=$DEFAULT_IFC_IPv4,$DEFAULT_IFC_IPv6
{{- else if eq .NetworkIPFamily "IPv6+IPv4" }}
DEFAULT_IFC_IPv4=$(ip -o route get 1 | grep -oP "src \K\S+")
DEFAULT_IFC_IPv6=$(ip -o -6 route get 1:: | grep -oP "src \K\S+")
if [ -z "${DEFAULT_IFC_IPv6}" ]
then
echodate "Failed to get IPv6 address for the default route interface"
exit 1
fi
DEFAULT_IFC_IP=$DEFAULT_IFC_IPv6,$DEFAULT_IFC_IPv4
{{- else }}
DEFAULT_IFC_IP=$(ip -o route get 1 | grep -oP "src \K\S+")
{{- end }}
if [ -z "${DEFAULT_IFC_IP}" ]
then
echodate "Failed to get IP address for the default route interface"
exit 1
fi
# get the full hostname
# FULL_HOSTNAME=$(hostname -f)
# # if /etc/machine-name is not empty then use the hostname from there
# if [ -s /etc/machine-name ]; then
# FULL_HOSTNAME=$(cat /etc/machine-name)
# fi
# write the nodeip_env file
# we need the line below because flatcar has the same string "coreos" in that file
if grep -q coreos /etc/os-release
then
# echo "KUBELET_NODE_IP=${DEFAULT_IFC_IP}\nKUBELET_HOSTNAME=${FULL_HOSTNAME}" > /etc/kubernetes/nodeip.conf
echo "KUBELET_NODE_IP=${DEFAULT_IFC_IP}" > /etc/kubernetes/nodeip.conf
elif [ ! -d /etc/systemd/system/kubelet.service.d ]
then
echodate "Can't find kubelet service extras directory"
exit 1
else
# echo -e "[Service]\nEnvironment=\"KUBELET_NODE_IP=${DEFAULT_IFC_IP}\"\nEnvironment=\"KUBELET_HOSTNAME=${FULL_HOSTNAME}\"" > /etc/systemd/system/kubelet.service.d/nodeip.conf
echo -e "[Service]\nEnvironment=\"KUBELET_NODE_IP=${DEFAULT_IFC_IP}\"" > /etc/systemd/system/kubelet.service.d/nodeip.conf
fi
encoding: b64
path: /opt/bin/setup_net_env.sh
permissions: 755
- content:
inline:
data: |
{{ .KubernetesCACert }}
encoding: b64
path: /etc/kubernetes/pki/ca.crt
permissions: 644
- content:
inline:
data: |
[Install]
WantedBy=multi-user.target
[Unit]
Requires=network-online.target
After=network-online.target
[Service]
Type=oneshot
RemainAfterExit=true
EnvironmentFile=-/etc/environment
ExecStart=/opt/bin/supervise.sh /opt/bin/setup
encoding: b64
path: /etc/systemd/system/setup.service
permissions: 644
- content:
inline:
data: |
export PATH="/opt/bin:$PATH"
encoding: b64
path: /etc/profile.d/opt-bin-path.sh
permissions: 644
- content:
inline:
data: |
apiVersion: kubelet.config.k8s.io/v1beta1
kind: KubeletConfiguration
authentication:
anonymous:
enabled: false
webhook:
cacheTTL: 0s
enabled: true
x509:
clientCAFile: /etc/kubernetes/pki/ca.crt
authorization:
mode: Webhook
webhook:
cacheAuthorizedTTL: 0s
cacheUnauthorizedTTL: 0s
cgroupDriver: systemd
clusterDNS:
{{- range .ClusterDNSIPs }}
- "{{ . }}"
{{- end }}
clusterDomain: cluster.local
{{- if .ContainerLogMaxSize }}
containerLogMaxSize: {{ .ContainerLogMaxSize }}
{{- else }}
containerLogMaxSize: 100Mi
{{- end }}
{{- if .ContainerLogMaxFiles }}
containerLogMaxFiles: {{ .ContainerLogMaxFiles }}
{{- else }}
containerLogMaxFiles: 5
{{- end }}
cpuManagerReconcilePeriod: 0s
evictionPressureTransitionPeriod: 0s
featureGates:
{{- if .KubeletFeatureGates -}}
{{ range $key, $val := .KubeletFeatureGates }}
{{ $key }}: {{ $val }}
{{- end -}}
{{- end }}
fileCheckFrequency: 0s
httpCheckFrequency: 0s
imageMinimumGCAge: 0s
logging:
flushFrequency: 0
options:
json:
infoBufferSize: "0"
verbosity: 0
memorySwap: {}
nodeStatusReportFrequency: 0s
nodeStatusUpdateFrequency: 0s
protectKernelDefaults: true
readOnlyPort: 0
rotateCertificates: true
runtimeRequestTimeout: 0s
serverTLSBootstrap: true
shutdownGracePeriod: 0s
shutdownGracePeriodCriticalPods: 0s
staticPodPath: /etc/kubernetes/manifests
streamingConnectionIdleTimeout: 0s
syncFrequency: 0s
kubeReserved:
{{- if .KubeReserved -}}
{{ range $key, $val := .KubeReserved }}
{{ $key }}: {{ $val }}
{{- end -}}
{{- else }}
cpu: 200m
ephemeral-storage: 1Gi
memory: 200Mi
{{- end }}
systemReserved:
{{- if .SystemReserved -}}
{{ range $key, $val := .SystemReserved }}
{{ $key }}: {{ $val }}
{{- end -}}
{{- else }}
cpu: 200m
ephemeral-storage: 1Gi
memory: 200Mi
{{- end }}
evictionHard:
{{- if .EvictionHard -}}
{{ range $key, $val := .EvictionHard }}
{{ $key }}: {{ $val }}
{{- end -}}
{{- else }}
imagefs.available: 15%
memory.available: 100Mi
nodefs.available: 10%
nodefs.inodesFree: 5%
{{- end }}
{{- if .MaxPods }}
maxPods: {{ .MaxPods }}
{{- end }}
tlsCipherSuites:
- TLS_AES_128_GCM_SHA256
- TLS_AES_256_GCM_SHA384
- TLS_CHACHA20_POLY1305_SHA256
- TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
- TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
- TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305
volumePluginDir: /var/lib/kubelet/volumeplugins
volumeStatsAggPeriod: 0s
encoding: b64
path: /etc/kubernetes/kubelet.conf
permissions: 644
- content:
inline:
data: |
[Unit]
Requires=kubelet.service
After=kubelet.service
[Service]
EnvironmentFile=-/etc/environment
ExecStart=/opt/bin/health-monitor.sh kubelet
[Install]
WantedBy=multi-user.target
encoding: b64
path: /etc/systemd/system/kubelet-healthcheck.service
permissions: 644
- content:
inline:
data: |
#!/usr/bin/env bash
set -euo pipefail
# Make sure we always disable swap - Otherwise the kubelet won't start as for some cloud
# providers swap gets enabled on reboot or after the setup script has finished executing.
sed -i.orig '/.*swap.*/d' /etc/fstab
swapoff -a
encoding: b64
path: /opt/disable-swap.sh
permissions: 755
supportedContainerRuntimes:
- files:
- content:
inline:
data: |
[Service]
Restart=always
EnvironmentFile=-/etc/environment
path: /etc/systemd/system/containerd.service.d/environment.conf
permissions: 644
- content:
inline:
data: |
runtime-endpoint: unix:///run/containerd/containerd.sock
path: /etc/crictl.yaml
permissions: 644
- content:
inline:
data: |
{{ .ContainerRuntimeConfig }}
encoding: b64
path: /etc/containerd/config.toml
permissions: 600
name: containerd
templates:
containerRuntimeInstallation: |-
apt-get update
apt-get install -y apt-transport-https ca-certificates curl software-properties-common lsb-release
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add -
add-apt-repository -y "deb https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
apt-get install -y --allow-downgrades -o Dpkg::Options::="--force-confold" containerd.io=1.6*
apt-mark hold containerd.io
systemctl daemon-reload
systemctl enable --now containerd
templates:
safeDownloadBinariesScript: |-
{{- /* setup some common directories */}}
opt_bin=/opt/bin
usr_local_bin=/usr/local/bin
cni_bin_dir=/opt/cni/bin
{{- /* create all the necessary dirs */}}
mkdir -p /etc/cni/net.d /etc/kubernetes/manifests "$opt_bin" "$cni_bin_dir"
{{- /* HOST_ARCH can be defined outside of machine-controller (in kubeone for example) */}}
arch=${HOST_ARCH-}
if [ -z "$arch" ]
then
case $(uname -m) in
x86_64)
arch="amd64"
;;
aarch64)
arch="arm64"
;;
*)
echo "unsupported CPU architecture, exiting"
exit 1
;;
esac
fi
{{- /* # CNI variables */}}
CNI_VERSION="${CNI_VERSION:-v1.2.0}"
cni_base_url="https://github.com/containernetworking/plugins/releases/download/$CNI_VERSION"
cni_filename="cni-plugins-linux-$arch-$CNI_VERSION.tgz"
{{- /* download CNI */}}
curl -Lfo "$cni_bin_dir/$cni_filename" "$cni_base_url/$cni_filename"
{{- /* download CNI checksum */}}
cni_sum=$(curl -Lf "$cni_base_url/$cni_filename.sha256")
cd "$cni_bin_dir"
{{- /* verify CNI checksum */}}
sha256sum -c <<<"$cni_sum"
{{- /* unpack CNI */}}
tar xvf "$cni_filename"
rm -f "$cni_filename"
cd -
{{- /* # cri-tools variables */}}
CRI_TOOLS_RELEASE="${CRI_TOOLS_RELEASE:-v1.26.0}"
cri_tools_base_url="https://github.com/kubernetes-sigs/cri-tools/releases/download/${CRI_TOOLS_RELEASE}"
cri_tools_filename="crictl-${CRI_TOOLS_RELEASE}-linux-${arch}.tar.gz"
{{- /* download cri-tools */}}
curl -Lfo "$opt_bin/$cri_tools_filename" "$cri_tools_base_url/$cri_tools_filename"
{{- /* download cri-tools checksum */}}
{{- /* the cri-tools checksum file provides only the checksum without the file name, so we need to handle it specially */}}
cri_tools_sum_value=$(curl -Lf "$cri_tools_base_url/$cri_tools_filename.sha256")
cri_tools_sum="$cri_tools_sum_value $cri_tools_filename"
cd "$opt_bin"
{{- /* verify cri-tools checksum */}}
sha256sum -c <<<"$cri_tools_sum"
{{- /* unpack cri-tools and symlink to path so it's available to all users */}}
tar xvf "$cri_tools_filename"
rm -f "$cri_tools_filename"
ln -sf "$opt_bin/crictl" "$usr_local_bin"/crictl || echo "symbolic link is skipped"
cd -
{{- /* kubelet */}}
KUBE_VERSION="${KUBE_VERSION:-{{ .KubeVersion }}}"
kube_dir="$opt_bin/kubernetes-$KUBE_VERSION"
kube_base_url="https://storage.googleapis.com/kubernetes-release/release/$KUBE_VERSION/bin/linux/$arch"
kube_sum_file="$kube_dir/sha256"
{{- /* create versioned kube dir */}}
mkdir -p "$kube_dir"
: >"$kube_sum_file"
for bin in kubelet kubeadm kubectl; do
{{- /* download kube binary */}}
curl -Lfo "$kube_dir/$bin" "$kube_base_url/$bin"
chmod +x "$kube_dir/$bin"
{{- /* download kube binary checksum */}}
sum=$(curl -Lf "$kube_base_url/$bin.sha256")
{{- /* save kube binary checksum */}}
echo "$sum $kube_dir/$bin" >>"$kube_sum_file"
done
{{- /* check kube binaries checksum */}}
sha256sum -c "$kube_sum_file"
for bin in kubelet kubeadm kubectl; do
{{- /* link kube binaries from verioned dir to $opt_bin */}}
ln -sf "$kube_dir/$bin" "$opt_bin"/$bin
done
supportedCloudProviders:
- name: gce
- name: fake
- name: baremetal
version: v1.2.11