-
Notifications
You must be signed in to change notification settings - Fork 275
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
validate-charts runs as part of 'make validate' step and checks that all images used in packaged charts: - use systemGlobalRegistry - are present in script/build-images
- Loading branch information
1 parent
ec6317e
commit d265c06
Showing
4 changed files
with
159 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
1.14.000,/charts/rke2-cilium.yaml,true | ||
v3.26.1-build2023080200,/charts/rke2-canal.yaml,true | ||
v3.26.100,/charts/rke2-calico.yaml,true | ||
v3.26.100,/charts/rke2-calico-crd.yaml,true | ||
1.24.004,/charts/rke2-coredns.yaml,true | ||
4.6.100,/charts/rke2-ingress-nginx.yaml,false | ||
2.11.100-build2023051509,/charts/rke2-metrics-server.yaml,false | ||
v4.0.2-build2023070703,charts/rke2-multus.yaml,true | ||
1.5.100,/charts/rancher-vsphere-cpi.yaml,true | ||
3.0.1-rancher101,/charts/rancher-vsphere-csi.yaml,true | ||
0.2.200,/charts/harvester-cloud-provider.yaml,true | ||
0.1.1600,/charts/harvester-csi-driver.yaml,true | ||
1.7.202,/charts/rke2-snapshot-controller.yaml,false | ||
1.7.202,/charts/rke2-snapshot-controller-crd.yaml,false | ||
1.7.300,/charts/rke2-snapshot-validation-webhook.yaml,false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
#!/usr/bin/env bash | ||
set -e | ||
|
||
info() { | ||
echo '[INFO] ' "$@" | ||
} | ||
|
||
error() { | ||
echo '[ERROR] ' "$@" >&2 | ||
} | ||
|
||
fatal() { | ||
echo '[ERROR] ' "$@" >&2 | ||
exit 1 | ||
} | ||
|
||
cleanup() { | ||
exit_code=$? | ||
trap - EXIT INT | ||
rm -rf /tmp/tmp.*.tar.gz | ||
exit ${exit_code} | ||
} | ||
trap cleanup EXIT INT | ||
|
||
|
||
download_chart() { | ||
chart_version=$1 | ||
chart_name=$2 | ||
bootstrap=$3 | ||
|
||
chart_package=${chart_name%%-crd} | ||
|
||
chart_url=${CHART_REPO:="https://rke2-charts.rancher.io"}/assets/${chart_package}/${chart_name}-${chart_version:="v0.0.0"}.tgz | ||
|
||
chart_tmp=$(mktemp --suffix .tar.gz) | ||
|
||
curl -fsSL "${chart_url}" -o "${chart_tmp}" | ||
|
||
echo $chart_tmp | ||
} | ||
|
||
check_system_registry() { | ||
chart_version=$1 | ||
chart_name=$2 | ||
chart_tmp=$3 | ||
|
||
yaml_tmp=$(mktemp --suffix .yaml) | ||
|
||
values="global.systemDefaultRegistry=my-registry" | ||
if [[ $chart_name == 'rancher-vsphere-csi' ]]; then | ||
values="$values,vCenter.clusterId=test-id" | ||
fi | ||
helm template test-chart --set $values $chart_tmp > $yaml_tmp; | ||
|
||
awk '$1 ~ /^image:/ { | ||
if( $2 !~ /my-registry/) { | ||
print $2 | ||
} | ||
} | ||
' $yaml_tmp | ||
} | ||
|
||
check_airgap() { | ||
chart_version=$1 | ||
chart_name=$2 | ||
chart_tmp=$3 | ||
|
||
yaml_tmp=$(mktemp --suffix .yaml) | ||
values="global.systemDefaultRegistry=my-registry" | ||
if [[ $chart_name == 'rancher-vsphere-csi' ]]; then | ||
values="$values,vCenter.clusterId=test-id" | ||
fi | ||
helm template test-chart --set $values $chart_tmp > $yaml_tmp; | ||
|
||
awk '$1 ~ /^image:/ { | ||
sub(/my-registry\//, "", $2) | ||
gsub(/"/, "", $2) | ||
print $2 | ||
} | ||
' $yaml_tmp | \ | ||
while read image | ||
do | ||
if ! grep -q $image scripts/build-images; then | ||
echo $image | ||
fi | ||
done | ||
} | ||
|
||
declare -A NO_SYSTEM_REGISTRY | ||
declare -A NOT_FOUND | ||
|
||
while IFS="," read -r version filename bootstrap | ||
do | ||
chart_name=$(basename "${filename%%.yaml}") | ||
chart_tmp=$(download_chart $version $chart_name $bootstrap) | ||
|
||
info "Validating chart $chart_name..." | ||
|
||
no_system_registry=$(check_system_registry $version $chart_name $chart_tmp) | ||
if ! [ -z "$no_system_registry" ]; then | ||
NO_SYSTEM_REGISTRY[$chart_name]=$no_system_registry | ||
fi | ||
|
||
not_found=$(check_airgap $version $chart_name $chart_tmp) | ||
if ! [ -z "$not_found" ]; then | ||
NOT_FOUND[$chart_name]=$not_found | ||
fi | ||
done < chart_versions.csv | ||
|
||
failed=false | ||
|
||
if [ ${#NO_SYSTEM_REGISTRY[@]} -ge 0 ]; then | ||
failed=true | ||
for chart in "${!NO_SYSTEM_REGISTRY[@]}" | ||
do | ||
error "Images not using systemGlobalRegistry in chart '$chart': ${NO_SYSTEM_REGISTRY[$chart]}" | ||
done | ||
error "Please use systemGlobalRegistry for above images" | ||
fi | ||
|
||
if [ ${#NOT_FOUND[@]} -ge 0 ]; then | ||
failed=true | ||
for chart in "${!NOT_FOUND[@]}" | ||
do | ||
error "Missing images for chart '$chart': ${NOT_FOUND[$chart]}" | ||
done | ||
error "Please include above images in build-images" | ||
fi | ||
|
||
fatal "Please fix the issues above" |