constellation/cli/internal/helm/generateCilium.sh

11 lines
247 B
Bash
Raw Normal View History

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