constellation/cli/internal/helm/generateCilium.sh
2022-10-10 14:21:17 +02:00

11 lines
256 B
Bash
Executable File

#!/usr/bin/env bash
CALLDIR=$(pwd)
CILIUMTMPDIR=$(mktemp -d)
cd $CILIUMTMPDIR
git clone --depth 1 -b 1.12.1 https://github.com/cilium/cilium.git
cd cilium
git apply $CALLDIR/cilium.patch
cp -r install/kubernetes/cilium $CALLDIR/charts
rm -r $CILIUMTMPDIR