constellation/cli/internal/helm/generateCilium.sh

11 lines
256 B
Bash
Raw Normal View History

2022-10-10 08:21:17 -04:00
#!/usr/bin/env bash
2022-08-12 04:20:19 -04:00
CALLDIR=$(pwd)
CILIUMTMPDIR=$(mktemp -d)
cd $CILIUMTMPDIR
git clone --depth 1 -b 1.12.1 https://github.com/cilium/cilium.git
2022-08-12 04:20:19 -04:00
cd cilium
git apply $CALLDIR/cilium.patch
cp -r install/kubernetes/cilium $CALLDIR/charts
rm -r $CILIUMTMPDIR