-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·846 lines (776 loc) · 30.4 KB
/
install.sh
File metadata and controls
executable file
·846 lines (776 loc) · 30.4 KB
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
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
#!/usr/bin/env bash
set -eo pipefail
shopt -s expand_aliases
# default vars
GATEWAY_CLASS="istio"
CLUSTER_CIDR=${CLUSTER_CIDR:-"10.42.0.0/16"}
SERVICE_CIDR=${SERVICE_CIDR:-"10.43.0.0/16"}
CERT_MANAGER_ENABLED="${CERT_MANAGER_ENABLED:-false}"
DRYCC_REGISTRY="${DRYCC_REGISTRY:-registry.drycc.cc}"
CHARTS_URL=oci://registry.drycc.cc/$([ "$CHANNEL" == "stable" ] && echo charts || echo charts-testing)
CONTAINERD_RUNTIMES="${CONTAINERD_RUNTIMES:-runc}"
CONTAINERD_CONFIG_PATH="${CONTAINERD_CONFIG_PATH:-/var/lib/rancher/k3s/agent/etc/containerd}"
mkdir -p "${CONTAINERD_CONFIG_PATH}"
CONTAINERD_CONFIG_FILE="${CONTAINERD_CONFIG_PATH}/config.toml.tmpl"
REGISTRY_CONFIG_PATH="${REGISTRY_CONFIG_PATH:-/etc/rancher/k3s/}"
mkdir -p "${REGISTRY_CONFIG_PATH}"
REGISTRY_CONFIG_FILE="${REGISTRY_CONFIG_PATH}/registries.yaml"
# initArch discovers the architecture for this system.
init_arch() {
ARCH=$(uname -m)
case $ARCH in
armv5*) ARCH="armv5";;
armv6*) ARCH="armv6";;
armv7*) ARCH="arm";;
aarch64) ARCH="arm64";;
x86) ARCH="386";;
x86_64) ARCH="amd64";;
i686) ARCH="386";;
i386) ARCH="386";;
esac
}
function clean_before_exit {
# delay before exiting, so stdout/stderr flushes through the logging system
rm -rf /tmp/drycc-values.yaml
sleep 3
}
trap clean_before_exit EXIT
init_arch
urlencode() {
# urlencode <string>
old_lang=$LANG
LANG=C
old_lc_collate=$LC_COLLATE
LC_COLLATE=C
local length="${#1}"
for (( i = 0; i < length; i++ )); do
local c="${1:i:1}"
case $c in
[a-zA-Z0-9.~_-]) printf "$c" ;;
*) printf '%%%02X' "'$c" ;;
esac
done
LANG=$old_lang
LC_COLLATE=$old_lc_collate
}
# get_latest_github_release fetches the latest GitHub release tag matching a regex pattern.
# Usage: get_latest_github_release <org/repo> <pattern>
# org/repo - GitHub organization and repository (e.g. "helm/helm")
# pattern - extended regex that the tag must match (e.g. "^v[0-9]+\.[0-9]+\.[0-9]+$")
# The function automatically selects the mirror URL based on INSTALL_DRYCC_MIRROR.
function get_latest_github_release {
local repo="$1"
local pattern="$2"
local base_url
if [[ "${INSTALL_DRYCC_MIRROR}" == "cn" ]]; then
base_url="https://drycc-mirrors.drycc.cc/${repo}"
else
base_url="https://github.com/${repo}"
fi
curl -Ls "${base_url}/releases" \
| grep -o "href=\"/${repo}/releases/tag/[^\"]*\"" \
| sed "s|href=\"/${repo}/releases/tag/||; s|\"$||" \
| grep -E "${pattern}" \
| sort -Vr \
| head -1
}
# install_helm downloads and installs the Helm CLI tool from the latest GitHub release.
function install_helm {
echo -e "\\033[32m---> Start install helm\\033[0m"
version=$(get_latest_github_release "helm/helm" "^v[0-9]+\.[0-9]+\.[0-9]+$")
tar_name="helm-${version}-linux-${ARCH}.tar.gz"
if [[ "${INSTALL_DRYCC_MIRROR}" == "cn" ]] ; then
helm_download_url="https://drycc-mirrors.drycc.cc/helm/${tar_name}"
else
helm_download_url="https://get.helm.sh/${tar_name}"
fi
curl -fsSL -o "${tar_name}" "${helm_download_url}"
tar -zxvf "${tar_name}"
mv "linux-${ARCH}/helm" /usr/local/bin/helm
rm -rf "${tar_name}" "linux-${ARCH}"
echo -e "\\033[32m---> crun runtime install completed!\\033[0m"
}
# helm_upgrade wraps "helm upgrade --install" with retry logic and a default timeout.
# Usage: helm_upgrade <release> <chart> [helm-options...]
# HELM_MAX_RETRIES - max number of retry attempts (default: 3)
# HELM_RETRY_INTERVAL - seconds between retries (default: 10)
# A default timeout of 10m0s is applied unless --timeout is explicitly passed.
function helm_upgrade {
local max_retries=${HELM_MAX_RETRIES:-3}
local retry_interval=${HELM_RETRY_INTERVAL:-10}
local has_timeout=false
for arg in "$@"; do
if [[ "$arg" == "--timeout" ]]; then
has_timeout=true
break
fi
done
local timeout_args=()
if [[ "$has_timeout" == "false" ]]; then
timeout_args=(--timeout 10m0s)
fi
for (( attempt=1; attempt<=max_retries; attempt++ )); do
if helm upgrade --install "$@" "${timeout_args[@]}"; then
return 0
fi
if [[ $attempt -lt $max_retries ]]; then
echo -e "\\033[33m---> Warning: helm upgrade --install failed (attempt $attempt/$max_retries), retrying in ${retry_interval}s...\\033[0m"
sleep "$retry_interval"
fi
done
echo -e "\\033[31m---> Error: helm upgrade --install failed after $max_retries attempts\\033[0m"
return 1
}
# configure_os tunes kernel parameters and OS settings for Kubernetes workloads.
# Includes: iptables cleanup, swap disable, BPF mount, sysctl overrides, CPU governor.
function configure_os {
echo -e "\\033[32m---> Start configuring kernel parameters\\033[0m"
if [[ "$(command -v iptables)" != "" ]] ; then
iptables -F || echo -e "\\033[33m---> Warning: iptables -F failed, skipping (container environment?)\\033[0m"
iptables -X || echo -e "\\033[33m---> Warning: iptables -X failed, skipping\\033[0m"
iptables -F -t nat || echo -e "\\033[33m---> Warning: iptables -F -t nat failed, skipping\\033[0m"
iptables -X -t nat || echo -e "\\033[33m---> Warning: iptables -X -t nat failed, skipping\\033[0m"
iptables -P FORWARD ACCEPT || echo -e "\\033[33m---> Warning: iptables -P FORWARD ACCEPT failed, skipping\\033[0m"
else
echo -e "\\033[33m---> Warning: iptables does not exist, skipping iptables configuration...\\033[0m"
fi
swapoff -a 2>/dev/null || true
sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab 2>/dev/null || true
mount bpffs -t bpf /sys/fs/bpf 2>/dev/null || echo -e "\\033[33m---> Warning: mount bpffs failed, skipping (container environment?)\\033[0m"
mkdir -p /etc/sysctl.d
cat << EOF > /etc/sysctl.d/99-zzz-override-drycc.conf
fs.file-max = 2097152
fs.inotify.max_user_instances = 65535
fs.inotify.max_user_watches = 1048576
net.core.rmem_max = 2500000
vm.nr_hugepages = 1024
EOF
sysctl --system 2>/dev/null || echo -e "\\033[33m---> Warning: sysctl --system failed, skipping (container environment?)\\033[0m"
cpufreq=$(ls /sys/devices/system/cpu/cpu*/cpufreq >/dev/null 2>&1 || echo "false")
if [[ $cpufreq != "false" ]]; then
for cpu in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do
echo performance > $cpu 2>/dev/null || true
done
fi
echo -e "\\033[32m---> Configuring kernel parameters finish\\033[0m"
}
# install_crun_runtime downloads and installs the crun OCI runtime binary.
function install_crun_runtime {
echo -e "\\033[32m---> Start install crun runtime\\033[0m"
if [[ "${INSTALL_DRYCC_MIRROR}" == "cn" ]] ; then
crun_base_url="https://drycc-mirrors.drycc.cc/containers"
else
crun_base_url="https://github.com/containers"
fi
crun_version=$(get_latest_github_release "containers/crun" "^[0-9]+\.[0-9]+(\.[0-9]+)?(-rc[0-9]+)?$")
crun_download_url=${crun_base_url}/crun/releases/download/${crun_version}/crun-${crun_version}-linux-${ARCH}
curl -sfL "${crun_download_url}" -o /usr/local/bin/crun
chmod a+rx /usr/local/bin/crun
echo -e "\\033[32m---> crun runtime install completed!\\033[0m"
}
# install_kata_runtime downloads and installs the Kata Containers runtime for VM-based isolation.
function install_kata_runtime {
echo -e "\\033[32m---> Start install kata runtime\\033[0m"
if [[ "${INSTALL_DRYCC_MIRROR}" == "cn" ]] ; then
kata_base_url="https://drycc-mirrors.drycc.cc/kata-containers"
else
kata_base_url="https://github.com/kata-containers"
fi
kata_version=$(get_latest_github_release "kata-containers/kata-containers" "^[0-9]+\.[0-9]+\.[0-9]+(-rc[0-9]+)?$")
kata_package=kata-static-${kata_version}-${ARCH}.tar.zst
kata_download_url=${kata_base_url}/kata-containers/releases/download/${kata_version}/${kata_package}
curl -fL "${kata_download_url}" -o ${kata_package}
tar -I zstd -xf ${kata_package} -C /
ln -sf /opt/kata/bin/containerd-shim-kata-v2 /usr/local/bin/containerd-shim-kata-v2
ln -sf /opt/kata/bin/kata-collect-data.sh /usr/local/bin/kata-collect-data.sh
ln -sf /opt/kata/bin/kata-runtime /usr/local/bin/kata-runtime
rm -rf ${kata_package}
echo -e "\\033[32m---> Kata runtime install completed!\\033[0m"
}
# install_runtime configures containerd runtimes based on CONTAINERD_RUNTIMES.
# Supported values: "runc" (default), "crun", "kata". Multiple values can be comma-separated.
# Generates the containerd config template and installs the selected runtimes.
function install_runtime {
readarray -d , -t containerd_runtimes <<<"$CONTAINERD_RUNTIMES"
if [[ "$CONTAINERD_RUNTIMES" =~ "crun" ]]; then
containerd_default_runtime="crun"
else
containerd_default_runtime="runc"
fi
cat << EOF > "${CONTAINERD_CONFIG_FILE}"
{{ template "base" . }}
[plugins.cri.containerd]
snapshotter = "overlayfs"
default_runtime_name = "${containerd_default_runtime}"
disable_snapshot_annotations = true
EOF
for (( n=0; n < ${#containerd_runtimes[*]}; n++ ))
do
if [[ "${containerd_runtimes[n]}" == "kata" ]]; then
install_kata_runtime
sed -i s/sandbox_cgroup_only=false/sandbox_cgroup_only=true/g /opt/kata/share/defaults/kata-containers/configuration.toml
cat << EOF >> "${CONTAINERD_CONFIG_FILE}"
[plugins.cri.containerd.runtimes.kata]
runtime_type = "io.containerd.kata.v2"
privileged_without_host_devices = true
pod_annotations = ["io.katacontainers.*"]
container_annotations = ["io.katacontainers.*"]
[plugins."io.containerd.grpc.v1.cri".containerd.runtimes.kata.options]
ConfigPath = "/opt/kata/share/defaults/kata-containers/configuration.toml"
EOF
elif [[ "${containerd_runtimes[n]}" == "crun" ]]; then
install_crun_runtime
cat << EOF >> "${CONTAINERD_CONFIG_FILE}"
[plugins.cri.containerd.runtimes.crun]
runtime_type = "io.containerd.runc.v2"
[plugins.cri.containerd.runtimes.crun.options]
SystemdCgroup = true
EOF
else
cat << EOF >> "${CONTAINERD_CONFIG_FILE}"
[plugins.cri.containerd.runtimes.runc]
runtime_type = "io.containerd.runc.v2"
[plugins.cri.containerd.runtimes.runc.options]
SystemdCgroup = true
EOF
fi
done
}
# configure_registry writes container registry mirror configuration for k3s/containerd.
# Only applies when INSTALL_DRYCC_MIRROR is set to "cn".
function configure_registry {
if [[ "${INSTALL_DRYCC_MIRROR}" == "cn" ]]; then
cat << EOF > "${REGISTRY_CONFIG_FILE}"
mirrors:
docker.io:
endpoint:
- "https://docker.m.daocloud.io"
- "https://docker-mirror.drycc.cc"
- "https://registry-1.docker.io"
quay.io:
endpoint:
- "https://quay.m.daocloud.io"
- "https://quay-mirror.drycc.cc"
- "https://quay.io"
gcr.io:
endpoint:
- "https://gcr.m.daocloud.io"
- "https://quay-mirror.drycc.cc"
- "https://gcr.io"
registry.k8s.io:
endpoint:
- "https://k8s.m.daocloud.io"
- "https://k8s-mirror.drycc.cc"
- "https://registry.k8s.io"
EOF
fi
}
# configure_kubectl sets up kubectl defaults, enabling server-side apply by default.
function configure_kubectl {
echo -e "\\033[32m---> Start configuring kubectl defaults\\033[0m"
mkdir -p "$HOME/.kube"
cat << EOF > "$HOME/.kube/kuberc"
apiVersion: kubectl.config.k8s.io/v1beta1
kind: Preference
defaults:
# Default to server-side apply
- command: apply
options:
- name: server-side
default: "true"
EOF
chmod 600 "$HOME/.kube/kuberc"
echo -e "\\033[32m---> Kubectl defaults configured (server-side apply enabled)\\033[0m"
}
# configure_k3s_mirrors selects the k3s install URL based on INSTALL_DRYCC_MIRROR.
function configure_k3s_mirrors {
echo -e "\\033[32m---> Start configuring k3s mirrors\\033[0m"
if [[ "${INSTALL_DRYCC_MIRROR}" == "cn" ]] ; then
INSTALL_K3S_MIRROR="${INSTALL_DRYCC_MIRROR}"
k3s_install_url="https://drycc-mirrors.drycc.cc/get-k3s/"
export INSTALL_K3S_MIRROR
else
k3s_install_url="https://get.k3s.io"
fi
echo -e "\\033[32m---> Configuring k3s mirrors finish\\033[0m"
}
# install_k3s_server installs and bootstraps a k3s server (control plane) node.
# Configures OS, runtimes, kubectl, registry mirrors, then installs k3s with
# embedded registry, Cilium CNI, and registers RuntimeClass resources.
function install_k3s_server {
configure_os
install_runtime
configure_kubectl
configure_registry
configure_k3s_mirrors
INSTALL_K3S_EXEC="server ${INSTALL_K3S_EXEC} --embedded-registry --flannel-backend=none --disable-network-policy --disable=traefik --disable=servicelb --disable-kube-proxy --cluster-cidr=${CLUSTER_CIDR} --service-cidr=${SERVICE_CIDR}"
if [[ -n "${K3S_DATA_DIR}" ]] ; then
INSTALL_K3S_EXEC="$INSTALL_K3S_EXEC --data-dir=${K3S_DATA_DIR}/rancher/k3s"
fi
if [[ -z "${K3S_URL}" ]] ; then
INSTALL_K3S_EXEC="$INSTALL_K3S_EXEC --cluster-init"
fi
curl -sfL "${k3s_install_url}" |INSTALL_K3S_EXEC="$INSTALL_K3S_EXEC" sh -s -
readarray -d , -t containerd_runtimes <<<"$CONTAINERD_RUNTIMES"
for (( n=0; n < ${#containerd_runtimes[*]}; n++ ))
do
kubectl apply -f - <<EOF
apiVersion: node.k8s.io/v1
kind: RuntimeClass
metadata:
name: ${containerd_runtimes[n]}
handler: ${containerd_runtimes[n]}
EOF
done
}
# install_k3s_agent installs and joins a k3s agent (worker) node to an existing cluster.
function install_k3s_agent {
configure_os
install_runtime
configure_kubectl
configure_registry
configure_k3s_mirrors
if [[ -n "${K3S_DATA_DIR}" ]] ; then
INSTALL_K3S_EXEC="$INSTALL_K3S_EXEC --embedded-registry --data-dir=${K3S_DATA_DIR}/rancher/k3s"
fi
curl -sfL "${k3s_install_url}" |INSTALL_K3S_EXEC="$INSTALL_K3S_EXEC" sh -s -
}
# install_longhorn deploys Longhorn distributed block storage via Helm.
# Usage: install_longhorn [helm-options...]
# LONGHORN_CONFIG_FILE - path to a custom Helm values file; uses defaults if unset.
function install_longhorn {
options=${1:-""}
helm repo add longhorn https://drycc-mirrors.drycc.cc/longhorn-charts
helm repo update
if [[ -z "${LONGHORN_CONFIG_FILE}" ]] ; then
echo -e "\\033[32m---> Longhorn using the default configuration.\\033[0m"
helm_upgrade longhorn longhorn/longhorn \
--set csi.attacherReplicaCount=1 \
--set csi.provisionerReplicaCount=1 \
--set csi.resizerReplicaCount=1 \
--set csi.snapshotterReplicaCount=1 \
--set persistence.defaultClass=false \
--set longhornUI.replicas=1 \
--set persistence.defaultClassReplicaCount=1 \
--namespace longhorn-system \
--create-namespace $options --wait
else
helm_upgrade longhorn longhorn/longhorn -f "${LONGHORN_CONFIG_FILE}" --wait
fi
echo -e "\\033[32m---> Longhorn install completed!\\033[0m"
}
# install_mountpoint deploys the AWS Mountpoint S3 CSI driver via Helm.
function install_mountpoint {
options=${1:-""}
helm repo add aws-mountpoint-s3-csi-driver https://drycc-mirrors.drycc.cc/mountpoint-charts
helm repo update
version=$(get_latest_github_release "drycc/mountpoint-s3-csi-driver" "^v[0-9]+\.[0-9]+\.[0-9]+$")
helm_upgrade aws-mountpoint-s3-csi-driver aws-mountpoint-s3-csi-driver/aws-mountpoint-s3-csi-driver \
--set supportLegacySystemDMounts=false \
--set image.repository=registry.drycc.cc/drycc/mountpoint-s3-csi-driver \
--set image.tag=${version#v} \
--namespace kube-system $options --wait
echo -e "\\033[32m---> Mountpoint install completed!\\033[0m"
}
# check_metallb validates that METALLB_CONFIG_FILE exists if it is set.
function check_metallb {
if [[ "${METALLB_CONFIG_FILE}" && ! -f "${METALLB_CONFIG_FILE}" ]] ; then
echo -e "\\033[33m---> The path ${METALLB_CONFIG_FILE} does not exist...\\033[0m"
exit 1
fi
}
# install_network deploys Cilium as the CNI with kube-proxy replacement and BPF masquerade.
# Usage: install_network [helm-options...]
#
# Best practices for production optimization:
# 1. Jumbo frames, change MTU(9000).
# 2. Big tcp, enableIPv6BIGTCP/enableIPv4BIGTCP.
# 3. Set `routingMode=native` and `ipv4NativeRoutingCIDR`.
# 4. Change `loadBalancer.mode` to dsr(requires `routingMode=native`).
# 5. Set `loadBalancer.acceleration=native`(requires hardware support).
#
# The following is a general configuration without optimization.
function install_network() {
options=${1:-""}
echo -e "\\033[32m---> Start install network...\\033[0m"
kubernetes_service_host=(`ip -o route get to 8.8.8.8 | sed -n 's/.*src \([0-9.]\+\).*/\1/p'`)
helm_upgrade cilium $CHARTS_URL/cilium \
--set endpointHealthChecking.enabled=false \
--set healthChecking=false \
--set operator.replicas=1 \
--set sysctlfix.enabled=true \
--set bpf.masquerade=true \
--set bandwidthManager.enabled=true \
--set bandwidthManager.bbr=true \
--set kubeProxyReplacement=true \
--set hubble.enabled=false \
--set hostPort.enabled=true \
--set k8sServiceHost=${KUBERNETES_SERVICE_HOST:-$kubernetes_service_host} \
--set k8sServicePort=${KUBERNETES_SERVICE_PORT:-6443} \
--set prometheus.enabled=true \
--set operator.prometheus.enabled=true \
--set envoy.enabled=false \
--set ipam.operator.clusterPoolIPv4MaskSize=${CLUSTER_POOL_IPV4_MASK_SIZE:-24} \
--namespace kube-system $options --wait
echo -e "\\033[32m---> Network install completed!\\033[0m"
}
# install_metallb deploys MetalLB for LoadBalancer service support with L2 advertisement.
# Usage: install_metallb [helm-options...]
# METALLB_CONFIG_FILE - path to a custom IPAddressPool/L2Advertisement manifest;
# uses a default 192.168.254.0/24 pool if unset.
function install_metallb() {
check_metallb
options=${1:-""}
echo -e "\\033[32m---> Start install metallb...\\033[0m"
helm_upgrade metallb $CHARTS_URL/metallb \
--set speaker.frr.enabled=true \
--namespace metallb \
--create-namespace $options --wait
if [[ -z "${METALLB_CONFIG_FILE}" ]] ; then
echo -e "\\033[32m---> Metallb using the default configuration.\\033[0m"
kubectl apply -n metallb -f - <<EOF
apiVersion: metallb.io/v1beta1
kind: IPAddressPool
metadata:
name: default
spec:
addresses:
- 192.168.254.0/24
---
apiVersion: metallb.io/v1beta1
kind: L2Advertisement
metadata:
name: drycc-l2-advertisement
namespace: metallb
spec:
ipAddressPools:
- default
EOF
else
kubectl apply -n metallb -f ${METALLB_CONFIG_FILE}
fi
echo -e "\\033[32m---> Metallb install completed!\\033[0m"
}
# install_gateway deploys the Istio Gateway API and Istio ingress gateway.
# Installs: Gateway API CRDs, istio-base, istiod, and istio-gateway.
# Usage: install_gateway [helm-options...]
function install_gateway() {
options=${1:-""}
echo -e "\\033[32m---> Start install gateway...\\033[0m"
if [[ "${INSTALL_DRYCC_MIRROR}" == "cn" ]] ; then
gateway_api_url=https://drycc-mirrors.drycc.cc/kubernetes-sigs/gateway-api
else
gateway_api_url=https://github.com/kubernetes-sigs/gateway-api
fi
version=$(get_latest_github_release "kubernetes-sigs/gateway-api" "^v[0-9]+\.[0-9]+\.[0-9]+(-rc[0-9]+)?$")
helm repo add istio https://drycc-mirrors.drycc.cc/istio-charts
helm repo update
kubectl apply -f $gateway_api_url/releases/download/${version}/experimental-install.yaml
helm_upgrade istio-base istio/base -n istio-system --set defaultRevision=default --create-namespace --wait $options
helm_upgrade istio-istiod istio/istiod -n istio-system \
--set pilot.env.PILOT_ENABLE_ALPHA_GATEWAY_API=true \
--set pilot.env.PILOT_ENABLE_QUIC_LISTENERS=true \
--wait $options
helm_upgrade istio-gateway istio/gateway -n istio-gateway \
--set service.type=ClusterIP \
--create-namespace --wait $options
echo -e "\\033[32m---> Gateway install completed!\\033[0m"
}
# install_cert_manager deploys cert-manager with Gateway API support enabled.
# Usage: install_cert_manager [helm-options...]
function install_cert_manager() {
options=${1:-""}
echo -e "\\033[32m---> Start install cert-manager...\\033[0m"
helm_upgrade cert-manager $CHARTS_URL/cert-manager \
--namespace cert-manager \
--create-namespace \
--set clusterResourceNamespace=drycc \
--set "extraArgs={--feature-gates=ExperimentalGatewayAPISupport=true}" \
--set crds.enabled=true --wait $options
echo -e "\\033[32m---> Cert-manager install completed!\\033[0m"
}
# install_catalog deploys the Kubernetes Service Catalog via Helm.
# Uses the "canary" image by default; fetches the latest stable version when CHANNEL is "stable".
# Usage: install_catalog [helm-options...]
function install_catalog() {
service_catalog_version="canary"
if [[ "$CHANNEL" == "stable" ]]; then
service_catalog_version=$(get_latest_github_release "drycc-addons/service-catalog" "^v[0-9]+\.[0-9]+\.[0-9]+(-rc[0-9]+)?$")
fi
options=${1:-""}
echo -e "\\033[32m---> Start install catalog...\\033[0m"
helm_upgrade catalog $CHARTS_URL/catalog \
--set asyncBindingOperationsEnabled=true \
--set image=registry.drycc.cc/drycc-addons/service-catalog:${service_catalog_version#v} \
--namespace catalog \
--create-namespace --wait $options
echo -e "\\033[32m---> Catalog install completed!\\033[0m"
}
# install_components installs all infrastructure components in order:
# network (Cilium), metallb, gateway (Istio), cert-manager, catalog.
function install_components {
install_network
install_metallb
install_gateway
install_cert_manager
install_catalog
}
# check_drycc validates that required environment variables are set before installing workflow.
# Requires: PLATFORM_DOMAIN, DRYCC_ADMIN_USERNAME, DRYCC_ADMIN_PASSWORD.
function check_drycc {
if [[ -z "${PLATFORM_DOMAIN}" ]] ; then
echo -e "\\033[33m---> Please set the PLATFORM_DOMAIN variable.\\033[0m"
echo -e "\\033[33m---> For example:\\033[0m"
echo -e "\\033[33m---> export PLATFORM_DOMAIN=drycc.cc\\033[0m"
echo -e "\\033[33m---> And confirm that wildcard domain name resolution has been set.\\033[0m"
echo -e "\\033[33m---> For example, the current server IP is 8.8.8.8\\033[0m"
echo -e "\\033[33m---> Please point *.drycc.cc to 8.8.8.8\\033[0m"
exit 1
fi
if [[ -z "${DRYCC_ADMIN_USERNAME}" || -z "${DRYCC_ADMIN_PASSWORD}" ]] ; then
echo -e "\\033[33m---> Please set the DRYCC_ADMIN_USERNAME and DRYCC_ADMIN_PASSWORD variable.\\033[0m"
echo -e "\\033[33m---> For example:\\033[0m"
echo -e "\\033[33m---> export DRYCC_ADMIN_USERNAME=admin\\033[0m"
echo -e "\\033[33m---> export DRYCC_ADMIN_PASSWORD=admin\\033[0m"
echo -e "\\033[33m---> This password is used by end users to log in and manage drycc.\\033[0m"
echo -e "\\033[33m---> Please set a high security string!!!\\033[0m"
exit 1
fi
}
# install_drycc deploys the Drycc Workflow platform via Helm.
# Usage: install_drycc [helm-options...]
# Requires: PLATFORM_DOMAIN, DRYCC_ADMIN_USERNAME, DRYCC_ADMIN_PASSWORD.
# Optional: VICTORIAMETRICS_CONFIG_FILE - path to custom VictoriaMetrics values file.
function install_drycc {
check_drycc
options=${1:-""}
echo -e "\\033[32m---> Start install workflow...\\033[0m"
if [[ "$CHANNEL" == "stable" ]]; then
FILER_VERSION=$(get_latest_github_release "drycc/filer" "^v[0-9]+\.[0-9]+\.[0-9]+(-rc[0-9]+)?$")
FILER_IMAGE=${DRYCC_REGISTRY}/drycc/filer:$(sed 's#v##' <<< $FILER_VERSION)
FILER_IMAGE_PULL_POLICY="IfNotPresent"
else
FILER_IMAGE=${DRYCC_REGISTRY}/drycc/filer:canary
FILER_IMAGE_PULL_POLICY="Always"
fi
cat << EOF > "/tmp/drycc-values.yaml"
global:
platformDomain: ${PLATFORM_DOMAIN}
certManagerEnabled: ${CERT_MANAGER_ENABLED}
builder:
replicas: ${BUILDER_REPLICAS:-1}
imageRegistry: ${DRYCC_REGISTRY}
gateway:
gatewayClass: ${GATEWAY_CLASS}
quickwit:
imageRegistry: ${DRYCC_REGISTRY}
database:
imageRegistry: ${DRYCC_REGISTRY}
resources:
limits:
memory: 2512Mi
hugepages-2Mi: 256Mi
persistence:
enabled: true
size: ${DATABASE_PERSISTENCE_SIZE:-5Gi}
storageClass: ${DATABASE_PERSISTENCE_STORAGE_CLASS:-""}
fluentbit:
imageRegistry: ${DRYCC_REGISTRY}
controller:
webhookReplicas: ${CONTROLLER_WEBHOOK_REPLICAS:-1}
imageRegistry: ${DRYCC_REGISTRY}
appRuntimeClass: ${CONTROLLER_APP_RUNTIME_CLASS:-""}
appGatewayClass: ${CONTROLLER_APP_GATEWAY_CLASS:-$GATEWAY_CLASS}
appStorageClass: ${CONTROLLER_APP_STORAGE_CLASS:-"longhorn"}
filerImage: ${FILER_IMAGE}
filerImagePullPolicy: ${FILER_IMAGE_PULL_POLICY}
api:
replicas: ${CONTROLLER_API_REPLICAS:-1}
celery:
replicas: ${CONTROLLER_CELERY_REPLICAS:-1}
metric:
replicas: ${CONTROLLER_METRIC_REPLICAS:-1}
mutate:
replicas: ${CONTROLLER_MUTATE_REPLICAS:-1}
valkey:
imageRegistry: ${DRYCC_REGISTRY}
persistence:
enabled: true
size: ${VALKEY_PERSISTENCE_SIZE:-5Gi}
storageClass: ${VALKEY_PERSISTENCE_STORAGE_CLASS:-""}
storage:
zones: 1
drives: 1
replicas: 4
imageRegistry: ${DRYCC_REGISTRY}
persistence:
enabled: true
size: ${STORAGE_PERSISTENCE_SIZE:-5Gi}
storageClass: ${STORAGE_PERSISTENCE_STORAGE_CLASS:-""}
imagebuilder:
imageRegistry: ${DRYCC_REGISTRY}
grafana:
imageRegistry: ${DRYCC_REGISTRY}
persistence:
enabled: true
size: ${MONITOR_GRAFANA_PERSISTENCE_SIZE:-5Gi}
storageClass: ${MONITOR_GRAFANA_PERSISTENCE_STORAGE_CLASS:-""}
passport:
replicas: ${PASSPORT_REPLICAS:-1}
imageRegistry: ${DRYCC_REGISTRY}
adminUsername: ${DRYCC_ADMIN_USERNAME}
adminPassword: ${DRYCC_ADMIN_PASSWORD}
registry:
replicas: ${REGISTRY_REPLICAS:-1}
imageRegistry: ${DRYCC_REGISTRY}
acme:
server: ${ACME_SERVER:-"https://acme-v02.api.letsencrypt.org/directory"}
externalAccountBinding:
keyID: ${ACME_EAB_KEY_ID:-""}
keySecret: ${ACME_EAB_KEY_SECRET:-""}
EOF
if [[ "${INSTALL_DRYCC_MIRROR}" == "cn" ]] ; then
cat << EOF > "/tmp/drycc-mirror-values.yaml"
imagebuilder:
container_registries: |
unqualified-search-registries = ["docker.io"]
short-name-mode="permissive"
[[registry]]
prefix = "docker.io"
location = "registry-1.docker.io"
[[registry.mirror]]
prefix = "docker.io"
location = "hub-mirror.c.163.com"
EOF
else
cat << EOF > "/tmp/drycc-mirror-values.yaml"
imagebuilder:
container_registries: |
unqualified-search-registries = ["docker.io"]
short-name-mode="permissive"
EOF
fi
if [[ -z "${VICTORIAMETRICS_CONFIG_FILE}" ]] ; then
VICTORIAMETRICS_CONFIG_FILE="/tmp/drycc-victoriametrics-values.yaml"
cat << EOF > "${VICTORIAMETRICS_CONFIG_FILE}"
victoriametrics:
enabled: true
vmagent:
replicas: 1
persistence:
enabled: true
size: ${VICTORIAMETRICS_VMAGENT_PERSISTENCE_SIZE:-10Gi}
storageClass: ${VICTORIAMETRICS_VMAGENT_PERSISTENCE_STORAGE_CLASS:-""}
vminsert:
replicas: 1
vmselect:
replicas: 1
vmstorage:
replicas: 1
persistence:
enabled: true
size: ${VICTORIAMETRICS_VMSTORAGE_PERSISTENCE_SIZE:-10Gi}
storageClass: ${VICTORIAMETRICS_VMSTORAGE_PERSISTENCE_STORAGE_CLASS:-""}
EOF
export VICTORIAMETRICS_CONFIG_FILE
fi
helm_upgrade drycc $CHARTS_URL/workflow \
--namespace drycc \
--values /tmp/drycc-values.yaml \
--values /tmp/drycc-mirror-values.yaml \
--values ${VICTORIAMETRICS_CONFIG_FILE} \
--create-namespace --wait --timeout 30m0s $options
echo -e "\\033[32m---> Workflow install completed!\\033[0m"
}
# install_helmbroker deploys the Helm Broker and registers it as a ClusterServiceBroker.
# Usage: install_helmbroker [helm-options...]
# HELMBROKER_USERNAME - override the auto-generated broker username
# HELMBROKER_PASSWORD - override the auto-generated broker password
function install_helmbroker {
if [[ "${INSTALL_DRYCC_MIRROR}" == "cn" ]] ; then
addons_base_url="https://drycc-mirrors.drycc.cc/drycc-addons/addons"
else
addons_base_url="https://github.com/drycc-addons/addons"
fi
version="latest"
if [[ "$CHANNEL" == "stable" ]]; then
version=$(get_latest_github_release "drycc-addons/addons" "^v[0-9]+$")
version=${version:-latest}
fi
addons_url="${addons_base_url}/releases/download/${version}/index.yaml"
options=${1:-""}
local VALKEY_PASSWORD=$(kubectl get secrets -n drycc valkey-creds -o jsonpath="{.data.password}"| base64 -d)
local HELMBROKER_USERNAME=${HELMBROKER_USERNAME:-$(kubectl get secrets -n drycc-helmbroker helmbroker-creds -o jsonpath="{.data.username}" 2>/dev/null | base64 -d || cat /proc/sys/kernel/random/uuid)}
local HELMBROKER_PASSWORD=${HELMBROKER_PASSWORD:-$(kubectl get secrets -n drycc-helmbroker helmbroker-creds -o jsonpath="{.data.password}" 2>/dev/null | base64 -d || cat /proc/sys/kernel/random/uuid)}
echo -e "\\033[32m---> Start install helmbroker...\\033[0m"
helm_upgrade helmbroker $CHARTS_URL/helmbroker \
--set valkey.enabled=false \
--set gateway.gatewayClass=${GATEWAY_CLASS} \
--set global.platformDomain=${PLATFORM_DOMAIN} \
--set global.certManagerEnabled=${CERT_MANAGER_ENABLED} \
--set persistence.size=${HELMBROKER_PERSISTENCE_SIZE:-5Gi} \
--set persistence.storageClass=${HELMBROKER_PERSISTENCE_STORAGE_CLASS:-"longhorn"} \
--set username=${HELMBROKER_USERNAME} \
--set password=${HELMBROKER_PASSWORD} \
--set replicas=${HELMBROKER_REPLICAS} \
--set valkeyUrl=redis://:${VALKEY_PASSWORD}@drycc-valkey.drycc.svc:16379/11 \
--set api.replicas=${HELMBROKER_API_REPLICAS} \
--set celery.replicas=${HELMBROKER_CELERY_REPLICAS} \
--namespace drycc-helmbroker --create-namespace $options --wait -f - <<EOF
repositories:
- name: drycc-helmbroker
url: ${addons_url}
EOF
kubectl apply -f - <<EOF
apiVersion: servicecatalog.k8s.io/v1beta1
kind: ClusterServiceBroker
metadata:
finalizers:
- kubernetes-incubator/service-catalog
generation: 1
labels:
app.kubernetes.io/managed-by: Helm
heritage: Helm
name: helmbroker
spec:
relistBehavior: Duration
relistRequests: 5
url: http://${HELMBROKER_USERNAME}:${HELMBROKER_PASSWORD}@drycc-helmbroker.drycc-helmbroker.svc
EOF
echo -e "\\033[32m---> Helmbroker username: $HELMBROKER_USERNAME\\033[0m"
echo -e "\\033[32m---> Helmbroker password: $HELMBROKER_PASSWORD\\033[0m"
echo -e "\\033[32m---> Helmbroker install completed!\\033[0m"
}
# upgrade upgrades all installed components using --reset-then-reuse-values to preserve
# previous Helm values while applying new chart defaults.
function upgrade {
install_network --reset-then-reuse-values
install_metallb --reset-then-reuse-values
install_gateway --reset-then-reuse-values
install_cert_manager --reset-then-reuse-values
install_catalog --reset-then-reuse-values
install_longhorn --reset-then-reuse-values
install_mountpoint --reset-then-reuse-values
install_drycc --reset-then-reuse-values
install_helmbroker --reset-then-reuse-values
echo -e "\\033[32m---> Upgrade complete, enjoy life...\\033[0m"
}
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml
if [[ -z "$@" ]] ; then
check_drycc
check_metallb
install_k3s_server
install_helm
install_components
install_longhorn
install_mountpoint
install_drycc
install_helmbroker
echo -e "\\033[32m---> Installation complete, enjoy life...\\033[0m"
else
for command in "$@"
do
$command
echo -e "\\033[32m---> Execute $command complete, enjoy life...\\033[0m"
done
fi