apiserver.sh
4.73 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
#!/bin/bash
set -e
APISERVER_DIR="$(cd "$(dirname "$0")/.."; echo "$PWD")"
export APISERVER_DIR
CONTEXT_DIR="$APISERVER_DIR"
declare -a args
declare -A features=(
[cert-manager]=1
[istio]=1
)
declare -a compose_files=(-f "$APISERVER_DIR/docker-compose.yaml")
declare -a k8s_nodes=()
declare -i agent_count=2
while [[ $# -gt 0 ]]; do
arg="$1"
shift
case "$arg" in
(--context-dir)
CONTEXT_DIR="$1"
shift
;;
(--feature)
features[$1]=1
shift
;;
(--no-feature)
features[$1]=
shift
;;
(-f)
compose_files+=(-f "$1")
shift
;;
(--agent-count)
agent_count="$1"
shift
;;
(-n)
k8s_nodes+=("$1")
shift
;;
(*)
args+=("$arg")
;;
esac
done
_create_agent_compose() {
sed -e "s/agent-1/agent-$1/g" < "$APISERVER_DIR/agent-compose.yaml"
}
set -- "${args[@]}"
for feature in "${!features[@]}"; do
fixed_feature="${feature^^*}"
fixed_feature="${fixed_feature//-/_}"
feature_enabled=false
[[ ${features[$feature]} ]] && feature_enabled=true
eval "${fixed_feature}_ENABLED"="$feature_enabled"
export "${fixed_feature}_ENABLED"
done
export CONTEXT_DIR
ETCD_ENDPOINTS="http://etcd1:2380,http://etcd2:2380,http://etcd3:2380"
declare -a animations=('-' '\' '|' '/')
declare -i animation_index=0
_compose() {
declare -a agent_files
declare -i agent_index=0
for ((agent_index=1; agent_index < $(($agent_count + 1)); agent_index++)); do
agent_files+=("-f <(_create_agent_compose $agent_index)")
done
eval docker-compose --project-directory "$CONTEXT_DIR" "${compose_files[@]}" "${agent_files[@]}" "$@"
}
declare -i agent_index=0
for ((agent_index=1; agent_index < $(($agent_count + 1)); agent_index++)); do
k8s_nodes+=(k3s-agent-$agent_index)
done
etcdctl() {
_compose exec etcd1 etcdctl "$@"
}
_start_animation() {
animation_index=0
animation_message="$1"
}
_animation_progress() {
printf "$animation_message: %s %s\r" "${animations[$animation_index]}" "$1"
animation_index=$(( ($animation_index + 1) % ${#animations[*]} ))
}
_stop_animation() {
printf "\r\33[2K"
if [[ $1 -eq 0 ]]; then
printf "$animation_message: done\n"
else
printf "$animation_message: error\n"
fi
}
_wait_for_etcd() {
declare -i cnt=5
_start_animation 'Waiting for etcd cluster'
while [ $cnt -ne 0 ]; do
_animation_progress
_compose up -d etcd1 etcd2 etcd3 1>/dev/null 2>/dev/null
if etcdctl --endpoints "$ETCD_ENDPOINTS" endpoint health 1>/dev/null 2>/dev/null; then
if [ $cnt -ne 5 ]; then
printf ' '
fi
_stop_animation 0
return
fi
sleep 1
cnt=$(($cnt - 1))
done
_stop_animation 1
echo "etcd failed to initialize!" 1>&2
exit 1
}
_wait_for_master() {
declare -i cnt=10
_start_animation "Waiting for k3s-master-1"
while [ $cnt -ne 0 ]; do
_animation_progress
if kubectl get --raw '/readyz' > /dev/null 2>/dev/null; then
if [ $cnt -ne 10 ]; then
printf ' '
fi
_stop_animation 0
return
fi
sleep 1
cnt=$(($cnt - 1))
done
_stop_animation 1
echo 'k3s-master-1 failed to initialize!' 1>&2
exit 1
}
_wait_for_system_pods() {
declare -i wanted got total
declare -A items
declare -a output
declare item output
for item in "$@"; do
items[$item]=0/0
done
_start_animation "Waiting for system pods"
while :; do
total=$#
while read item status rest; do
wanted=${status%/*}
got=${status%*/}
if [[ $wanted -eq $got && ! $wanted -eq 0 ]]; then
total=$(($total - 1))
fi
items[$item]="$status"
done < <(kubectl get --namespace kube-system --no-headers --show-kind "$@" 2>/dev/null || true)
output=()
for item in "$@"; do
: item "$item"
output+=("${items[$item]}")
done
_animation_progress "${output[*]}"
if [[ $total -eq 0 ]]; then
break
fi
sleep 1
done
_stop_animation 0
}
_wait_for_system() {
_wait_for_system_pods deployment.apps/metrics-server
}
cmd="$1"
shift
case "$cmd" in
(switch-to)
"$APISERVER_DIR/scripts/update-docker-kubeconfig.sh" "$CONTEXT_DIR"
exit
;;
(wait-for-system)
_wait_for_system
;;
(start)
# Verify that the compose files have valid syntax.
if ! _compose ls 1>/dev/null 2>/dev/null; then
_compose ls
fi
"$APISERVER_DIR/scripts/ensure-certs.sh" "$CONTEXT_DIR"
_wait_for_etcd
_compose up -d k3s-master-1
"$APISERVER_DIR/scripts/update-docker-kubeconfig.sh" "$CONTEXT_DIR"
_wait_for_master
_compose up -d k3s-coredns-1 k3s-coredns-2 k3s-coredns-3
"$APISERVER_DIR/scripts/install-cluster-dns.sh" "$CONTEXT_DIR"
_compose up -d "${k8s_nodes[@]}"
_compose up -d k3s-master-2 k3s-master-3
#"$APISERVER_DIR/scripts/wait-for-system-pods.sh" 1
_wait_for_system
#_compose up -d k3s-proxy
#[[ ${features[istio]} ]] && istioctl install -yf "$APISERVER_DIR/istio-minimal-operator.yaml"
;;
(stop)
_compose down "$@"
;;
("")
;;
(*)
echo "Unknown command: $1" 1>&2
exit 1
;;
esac