# Contributor: Stefan Reimer # Maintainer: Stefan Reimer pkgname=kubezero pkgver=1.25 pkgrel=0 pkgdesc="KubeZero release package" url="https://git.zero-downtime.net/ZeroDownTime/alpine-overlay/src/branch/master/kubezero/kubezero" arch="noarch" license="AGPL-3.0" depends=" podman xz cri-tools cri-o~$pkgver kubelet~$pkgver kubectl~$pkgver ecr-credential-provider~$pkgver aws-iam-authenticator~0.6.2 " options="!check" #install="$pkgname.post-install" subpackages=" $pkgname-imagecache " source=" shared-sys-fs.start evictLocalNode.sh " IMAGES="quay.io/cilium/cilium:v1.13.1 ghcr.io/k8snetworkplumbingwg/multus-cni:v3.9.3" build() { for i in $IMAGES; do IMAGE_NAME=$(echo $i | sed -e 's/.*\///' -e 's/:.*//') podman --storage-driver vfs pull $i podman --storage-driver vfs save $i | xz -z -T 0 - > $IMAGE_NAME.tar.xz done } package() { # make /sys shared install -Dm755 "$srcdir"/shared-sys-fs.start "$pkgdir/etc/local.d/shared-sys-fs.start" # drain local node install -Dm755 "$srcdir"/evictLocalNode.sh "$pkgdir/usr/bin/evictLocalNode.sh" } # Preload container images all nodes need to speed up boot time and reduce data transfer imagecache() { mkdir -p "$subpkgdir/mnt/zdt/cache" for i in $IMAGES; do IMAGE_NAME=$(echo $i | sed -e 's/.*\///' -e 's/:.*//') install -Dm644 "$srcdir"/$IMAGE_NAME.tar.xz "$subpkgdir/mnt/zdt/cache/$IMAGE_NAME.tar.xz" done } sha512sums=" b0cadf577ea912630efabf8d104f2edaa79bd1697a1f9224ce8a75354dd204196c6d3c15c0318afa44be10be9696ce20ef0015198ee0b74050897d164f77ae60 shared-sys-fs.start fce1013f7b1bfa8ee526de62e642a37fda3168889723e873d3fb69e257f4caa1423b5a14b9343b12a87f3b6f93c7d3861b854efda67ef2d6a42a5ca8cf3d1593 evictLocalNode.sh "