constellation/cli/internal/helm/generateCilium.sh
3u13r f649219cbf
Feat/cilium strict mode2.0 (#25)
* bump cilium helm charts

* integrate cilium strict mode v2
2022-08-31 15:37:07 +02:00

11 lines
248 B
Bash
Executable File

#!/bin/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