mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
11 lines
247 B
Bash
Executable File
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
|