-
Notifications
You must be signed in to change notification settings - Fork 0
/
cr.sh
executable file
·428 lines (368 loc) · 11.3 KB
/
cr.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
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
#!/usr/bin/env bash
# Copyright The Helm 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
#
# https://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.
set -o errexit
set -o nounset
set -o pipefail
DEFAULT_HELM_VERSION=v3.14.1
DEFAULT_TEA_VERSION='0.9.2'
ARCH=$(uname)
ARCH_MODEL=$(uname -m)
if [ "$ARCH_MODEL" = "aarch64" ]; then
ARCH_MODEL="arm64"
fi
ARCH="${ARCH,,}-${ARCH_MODEL}"
released_charts=()
dry_run=false
show_help() {
cat <<EOF
Usage: $(basename "$0") <options>
-h, --help Display help
-v, --version The helm version to use (default: $DEFAULT_HELM_VERSION)"
-d, --charts-dir The charts directory (default either: helm, chart or charts)
-u, --oci-username The username used to login to the OCI registry
-r, --oci-registry The OCI registry
-t, --tag-name-pattern Specifies Gitea repository release naming pattern (ex. '{chartName}-chart')
--install-dir Specifies custom install dir
--skip-helm-install Skip helm installation (default: false)
--skip-tea-install Skip tea installation (default: false)
--skip-dependencies Skip dependencies update from "Chart.yaml" to dir "charts/" before packaging (default: false)
--skip-exisiting Skip the chart push if the Gitea release exists
-l, --mark-as-latest Mark the created Gitea release as 'latest' (default: true)
EOF
}
errexit() {
>&2 echo "$*"
exit 1
}
main() {
local version="$DEFAULT_HELM_VERSION"
local tea_version="$DEFAULT_TEA_VERSION"
local charts_dir=
local oci_username=
local oci_registry=
local oci_host=
local install_dir=
local skip_helm_install=false
local skip_tea_install=false
local skip_dependencies=false
local skip_existing=true
local server_url=https://gitea.com
local tag_name_pattern=
local repo_root=
parse_command_line "$@"
: "${GITEA_TOKEN:?Environment variable GITEA_TOKEN must be set}"
: "${OCI_PASSWORD:?Environment variable OCI_PASSWORD must be set}"
(! $dry_run) || echo "===> DRY-RUN: TRUE"
repo_root=$(git rev-parse --show-toplevel)
pushd "$repo_root" >/dev/null
find_charts_dir
echo 'Looking up latest tag...'
local latest_tag
latest_tag=$(lookup_latest_tag)
echo "Discovering changed charts since '$latest_tag'..."
local changed_charts=()
readarray -t changed_charts <<<"$(lookup_changed_charts "$latest_tag")"
if [[ -n "${changed_charts[*]}" ]]; then
install_helm
install_tea
helm_login
tea_login
for chart in "${changed_charts[@]}"; do
local desc name version info=()
readarray -t info <<<"$(chart_info "$chart")"
desc="${info[0]}"
name="${info[1]}"
version="${info[2]}"
package_chart "$chart"
release_chart "$chart" "$name" "$version" "$desc"
done
echo "released_charts=$(
IFS=,
echo "${released_charts[*]}"
)" >released_charts.txt
else
echo "Nothing to do. No chart changes detected."
echo "released_charts=" >released_charts.txt
fi
echo "chart_version=${latest_tag}" >chart_version.txt
popd >/dev/null
}
parse_command_line() {
while [ "${1:-}" != "-" ]; do
case "${1:-}" in
-h | --help)
show_help
exit
;;
-v | --version)
if [[ -n "${2:-}" ]]; then
version="$2"
shift
else
echo "ERROR: '-v|--version' cannot be empty." >&2
show_help
exit 1
fi
;;
-d | --charts-dir)
if [[ -n "${2:-}" ]]; then
charts_dir="$2"
shift
else
echo "ERROR: '-d|--charts-dir' cannot be empty." >&2
show_help
exit 1
fi
;;
-u | --oci-username)
if [[ -n "${2:-}" ]]; then
oci_username="$2"
shift
else
echo "ERROR: '--oci-username' cannot be empty." >&2
show_help
exit 1
fi
;;
-r | --oci-registry)
if [[ -n "${2:-}" ]]; then
oci_registry="$2"
shift
else
echo "ERROR: '--oci-registry' cannot be empty." >&2
show_help
exit 1
fi
;;
--install-dir)
if [[ -n "${2:-}" ]]; then
install_dir="$2"
shift
fi
;;
--skip-helm-install)
if [[ -n "${2:-}" ]]; then
skip_helm_install="$2"
shift
fi
;;
--skip-tea-install)
if [[ -n "${2:-}" ]]; then
skip_tea_install="$2"
shift
fi
;;
--skip-dependencies)
if [[ -n "${2:-}" ]]; then
skip_dependencies="$2"
shift
fi
;;
--skip-existing)
if [[ -n "${2:-}" ]]; then
skip_existing="$2"
shift
fi
;;
--server-url)
if [[ -n "${2:-}" ]]; then
server_url="$2"
shift
fi
;;
-t | --tag-name-pattern)
if [[ -n "${2:-}" ]]; then
tag_name_pattern="$2"
shift
fi
;;
*)
break
;;
esac
shift
done
if [[ -z "$oci_username" ]]; then
echo "ERROR: '-u|--oci-username' is required." >&2
show_help
exit 1
fi
if [[ -z "$oci_registry" ]]; then
echo "ERROR: '-r|--oci-registry' is required." >&2
show_help
exit 1
fi
if [[ -n $tag_name_pattern && $tag_name_pattern != *"{chartName}"* ]]; then
echo "ERROR: Name pattern must contain '{chartName}' field." >&2
show_help
exit 1
fi
if [[ -z "$install_dir" ]]; then
# use /tmp or RUNNER_TOOL_CACHE in Gitea Actions
install_dir="${RUNNER_TOOL_CACHE:-/tmp}/cra/$ARCH"
export HELM_CACHE_HOME="${install_dir}/.cache"
export HELM_CONFIG_HOME="${install_dir}/.config"
export HELM_DATA_HOME="${install_dir}.share"
fi
}
install_helm() {
if ( "$skip_helm_install" ) && ( which helm &> /dev/null ); then
echo "Skipng helm install. Using existing helm..."
return
elif ( "$skip_helm_install" ); then
errexit "ERROR: Remove --skip-helm-install or preinstall!"
fi
if [[ ! -x "$install_dir/helm" ]]; then
mkdir -p "$install_dir"
echo "Installing Helm ($version) to $install_dir..."
curl -sSLo helm.tar.gz "https://get.helm.sh/helm-${version}-${ARCH}.tar.gz"
curl -sSL "https://get.helm.sh/helm-${version}-${ARCH}.tar.gz.sha256sum" | \
sed 's/helm-.*/helm.tar.gz/' > helm.sha256sum
if ( ! sha256sum -c helm.sha256sum ); then
rm -f helm.tar.gz helm.sha256sum
errexit "ERROR: Aborting helm checksum is invalid"
fi
tar -C "$install_dir/.." -xzf helm.tar.gz "$ARCH/helm"
rm -f helm.tar.gz helm.sha256sum
else
echo "Helm is found in the install directory"
fi
echo 'Setting PATH to use helm from the install directory...'
export PATH="$install_dir:$PATH"
}
install_tea() {
if ( "$skip_tea_install" ) && ( which tea &> /dev/null ); then
echo "Skipng tea install. Using existing tea..."
return
elif ( "$skip_tea_install" ); then
errexit "ERROR: Remove --skip-tea-install or preinstall!"
fi
if [[ ! -x "$install_dir/tea" ]]; then
mkdir -p "$install_dir"
echo "Installing tea ($tea_version) to $install_dir..."
curl -sSLo tea.xz "https://dl.gitea.com/tea/${tea_version}/tea-${tea_version}-${ARCH}.xz"
curl -sSL "https://dl.gitea.com/tea/${tea_version}/tea-${tea_version}-${ARCH}.xz.sha256" | \
sed 's/tea-.*/tea.xz/' > tea.sha256sum
if ( ! sha256sum -c tea.sha256sum ); then
rm -f tea.xz tea.sha256sum
errexit "ERROR: Aborting tea checksum is invalid"
fi
xz -dc tea.xz > "$install_dir/tea" && chmod +x "$install_dir/tea"
rm -f tea.xz tea.sha256sum
else
echo "tea is found in the install directory"
fi
echo 'Setting PATH to use tea from the install directory...'
export PATH="$install_dir:$PATH"
}
lookup_latest_tag() {
git fetch --tags >/dev/null 2>&1
if ! git describe --tags --abbrev=0 HEAD~ 2>/dev/null; then
git rev-list --max-parents=0 --first-parent HEAD
fi
}
filter_charts() {
local charts=()
while read -r path; do
if [[ -f "${path}/Chart.yaml" ]]; then
charts+=("$path")
fi
done
printf "%s\n" "${charts[@]}"
}
find_charts_dir() {
local cdirs=()
if [ -n "$charts_dir" ]; then return; fi
if [ -f "helm/Chart.yaml" ]; then cdirs+=("."); fi
if [ -f "chart/Chart.yaml" ]; then cdirs+=("."); fi
if (( "${#cdirs[@]}" > 1 )); then
errexit "ERROR: Can't use both helm and chart directory."
fi
charts_dir="${cdirs[0]:-charts/}"
}
lookup_changed_charts() {
local commit="$1"
local changed_files
changed_files=$(git diff --find-renames --name-only "$commit" -- "$charts_dir")
local depth=$(($(tr "/" "\n" <<<"$charts_dir" | sed '/^\(\.\)*$/d' | wc -l) + 1))
local fields="1-${depth}"
cut -d '/' -f "$fields" <<<"$changed_files" | uniq | filter_charts
}
package_chart() {
local chart="$1" flags=
( $skip_dependencies ) || flags="-u"
echo "Packaging chart '$chart'..."
dry_run helm package "$chart" $flags -d "${install_dir}/package/$chart"
}
dry_run() {
# dry-run on
if ($dry_run); then
{ set -x; echo "$@" >/dev/null; set +x; } 2>&1 | sed '/set +x/d' >&2; return
else
"$@"
fi
}
chart_info() {
local chart_dir="$1"
# use readarray with the retruned line
helm show chart "$chart_dir" | sed -En '/^(description|name|version)/p' | sort | sed 's/^.*: //'
}
# get gitea release tag
release_tag() {
local name="$1" version="$2"
if [ -n "$tag_name_pattern" ]; then
tag="${tag_name_pattern//\{chartName\}/$name}"
fi
echo "${tag:-$name}-$version"
}
release_exists() {
local tag="$1"
# fields: "Tag-Name" "Title" "Published At" "Status" "Tar URL"
dry_run tea release ls -l default -o simple | tr -s '[:blank:]' | sed -E 's/\sLatest//' | cut -f 1 -d' ' | grep -q "$tag" && echo true || echo false
}
release_chart() {
local releaseExists flags tag chart_package chart="$1" name="$2" version="$3" desc="$4"
tag=$(release_tag "$name" "$version")
chart_package="${install_dir}/package/${chart}/${name}-${version}.tgz"
releaseExists=$(release_exists "$tag")
if ($releaseExists && $skip_existing); then
echo "Release tag '$tag' is present. Skip chart push (skip_existing=true)..."
return
fi
dry_run helm push "${chart_package}" "oci://${oci_registry}"
if (! $releaseExists); then
dry_run tea release create -l default -o simple --tag "$tag" --title "$tag" --note "$desc" --asset "$chart_package"
fi
released_charts+=("$chart")
}
helm_login() {
echo "Helm login:"
# Get the cleared host url
local oci_registry="${oci_registry#oci://}"
local oci_host="${oci_registry%%/*}"
echo "$OCI_PASSWORD" | dry_run helm registry login -u "${oci_username}" --password-stdin "${oci_host}"
}
tea_login() {
echo "Tea login:"
# Check if server_url starts with "https://"
if [[ $server_url != https://* && $server_url != http://* ]]; then
server_url="https://$server_url"
fi
# Get the cleared host url
local gitea_host="${server_url%/}"
dry_run tea login add --name default --token "${GITEA_TOKEN}" --url "${gitea_host}"
dry_run tea login default default
}
main "$@"