forked from prometheus-operator/prometheus-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-external.sh
executable file
·271 lines (216 loc) · 6 KB
/
run-external.sh
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
#!/usr/bin/env bash
# NOTE:
# -e exit immediately when a command fails
# -u error on unset variables
# -o pipefail exit with zero only if all commands of the pipeline exit successfully
set -eu -o pipefail
trap cleanup EXIT INT
# globals
declare CLUSTER=""
declare SHOW_USAGE=false
declare SKIP_OPERATOR_RUN_CHECK=false
declare USE_DEFAULT_CONTEXT=false
declare API_SERVER=""
declare IMPERSONATE_USER="${IMPERSONATE_USER:-}"
declare FEATURE_GATES="${FEATURE_GATES:-}"
# tmp operator files that needs to be cleaned up
declare -r CA_FILE="tmp/CA_FILE"
declare -r KEY_FILE="tmp/KEY_FILE"
declare -r CERT_FILE="tmp/CERT_FILE"
cleanup() {
rm -f "$CA_FILE" "$KEY_FILE" "$CERT_FILE"
}
run() {
echo " ❯ $* "
"$@"
}
header() {
local title="🔆🔆🔆 $* 🔆🔆🔆 "
local len=40
if [[ ${#title} -gt $len ]]; then
len=${#title}
fi
echo -e "\n\n \033[1m${title}\033[0m"
echo -n "━━━━━"
printf '━%.0s' $(seq "$len")
echo "━━━━━"
}
info() {
echo " 🔔 $*"
}
ok() {
echo " ✅ $*"
}
warn() {
echo " ⚠️ $*"
}
err() {
echo " 🛑 ERROR: $*"
}
update_crds() {
header "Update Operator CRDs"
run kubectl apply --server-side --force-conflicts \
-f example/prometheus-operator-crd-full
info "Wait for CRDs to be registered"
run kubectl wait --for=condition=Established crds --all --timeout=120s
}
init_cluster_context() {
header "Set Cluster"
$USE_DEFAULT_CONTEXT && {
CLUSTER=$(kubectl config current-context)
}
info "Using cluster - '$CLUSTER'"
return 0
}
extract_certs() {
local cluster=".clusters[?(@.name == \"$CLUSTER\")].cluster"
local user=".users[?(@.name == \"$CLUSTER\")].user"
local ca key cert
API_SERVER=$(kubectl config view -o jsonpath="{$cluster.server}")
ca=$(kubectl config view --raw -o jsonpath="{$cluster.certificate-authority-data}" | base64 -d)
key=$(kubectl config view --raw -o jsonpath="{$user.client-key-data}" | base64 -d)
cert=$(kubectl config view --raw -o jsonpath="{$user.client-certificate-data}" | base64 -d)
local fail=0
[[ -z "$API_SERVER" ]] && {
err "failed to get api server details; did you specify the right context?"
fail=1
}
[[ -z "$ca" ]] && {
err "CA is empty; did you specify the right context?"
fail=1
}
[[ -z "$cert" ]] && {
err "cert is empty; did you specify the right context?"
fail=1
}
[[ -z "$key" ]] && {
err "key is empty; did you specify the right context?"
fail=1
}
[[ "$fail" -ne 0 ]] && return 1
echo "$ca" >"$CA_FILE"
echo "$key" >"$KEY_FILE"
echo "$cert" >"$CERT_FILE"
return 0
}
run_operator() {
header "Run Operator"
info "Running operator against cluster: $CLUSTER - $API_SERVER"
echo "──────────────────────────────────────────────────────────────────"
run ./operator \
--as="$IMPERSONATE_USER" \
--apiserver="$API_SERVER" \
--ca-file="$CA_FILE" \
--cert-file="$CERT_FILE" \
--feature-gates="$FEATURE_GATES" \
--key-file="$KEY_FILE" 2>&1 | tee tmp/operator.log
}
validate_args() {
if [[ -z "$CLUSTER" ]] && ! $USE_DEFAULT_CONTEXT; then
err "missing cluster name or --use-default-context"
return 1
fi
# ensure both cluster and use-default-context isn't set
if [[ -n "$CLUSTER" ]] && $USE_DEFAULT_CONTEXT; then
err "Cannot provide both cluster name '$CLUSTER' and --use-default-context"
return 1
fi
return 0
}
ensure_operator_not_running() {
header "Ensure no other prometheus-operator is running"
$SKIP_OPERATOR_RUN_CHECK && {
info "skipping operator run check"
return 0
}
local po_label='app.kubernetes.io/name=prometheus-operator'
local po_pods
po_pods=$(kubectl get pods -A -l "$po_label" -o name | wc -l)
[[ "$po_pods" -gt 0 ]] && {
warn "Found $po_pods pods matching $po_label in cluster!"
echo "If it is safe to continue, rerun the script with --no-operator-run-check option"
return 1
}
ok "No pods with matching label $po_label running in cluster"
return 0
}
show_usage() {
local scr
scr="$(basename "$0")"
read -r -d '' help <<-EOF_HELP || true
Usage:
────────────────────────────────────────────
❯ $scr <cluster-name>
❯ $scr -h|--help
Options:
⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻
--help | -h show this help
--no-operator-run-check | -f: skips the check that ensures no prometheus-operator
is running in the cluster.
--use-default-context | -c: Runs operator using current context
NOTE: cannot use both -c and <cluster-name>
⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻
💡 Tips
⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻⎻
To get all cluster names in current context, run:
❯ kubectl config get-contexts -o name
To get current/default cluster names, run:
❯ kubectl config current-context
EOF_HELP
echo -e "$help"
return 0
}
parse_args() {
### while there are args parse them
while [[ -n "${1+xxx}" ]]; do
case $1 in
-h | --help)
SHOW_USAGE=true
# exit the loop
break
;;
--no-operator-run-check | -f)
shift
SKIP_OPERATOR_RUN_CHECK=true
shift
;;
--use-default-context | -c)
shift
USE_DEFAULT_CONTEXT=true
;;
*)
CLUSTER="$1"
shift
;;
esac
done
return 0
}
build_operator() {
header "Building Operator"
run make operator
}
main() {
parse_args "$@" || {
show_usage
exit 1
}
$SHOW_USAGE && {
show_usage
exit 0
}
validate_args || {
show_usage
exit 1
}
# all files are relative to the root of the project
cd "$(git rev-parse --show-toplevel)"
mkdir -p tmp
init_cluster_context
extract_certs
ensure_operator_not_running
build_operator
update_crds
run_operator
}
main "$@"