mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
7aa7492474
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
14 lines
336 B
Bash
Executable File
14 lines
336 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
shopt -s inherit_errexit
|
|
|
|
calldir=$(pwd)
|
|
ciliumTmpDir=$(mktemp -d)
|
|
cd "${ciliumTmpDir}" || exit 1
|
|
git clone --depth 1 -b 1.12.1 https://github.com/cilium/cilium.git
|
|
cd cilium || exit 1
|
|
git apply "${calldir}"/cilium.patch
|
|
cp -r install/kubernetes/cilium "${calldir}"/charts
|
|
rm -r "${ciliumTmpDir}"
|