constellation/cli/internal/helm/generateCilium.sh
2022-08-12 10:20:19 +02:00

11 lines
247 B
Bash
Executable File

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