Skip to content

Instantly share code, notes, and snippets.

View sspaeth-r7's full-sized avatar
🪐

Skyler Spaeth sspaeth-r7

🪐
View GitHub Profile
@sspaeth-r7
sspaeth-r7 / istio-fips-build.sh
Last active February 21, 2024 21:04 — forked from jeesmon/istio-fips-build.sh
Istio FIPS Build for Jenkins
#!/bin/bash -xeu
# -e used in shebang and pipefail because if there's
# a failure somewhere mid-pipe chain WE NEED TO KNOW
# -u throws an error when using undefined variables
set -o pipefail
git clone https://github.com/istio/tools.git --depth 1
pushd tools/docker/build-tools
git fetch --tags
git checkout "${ISTIO_VERSION}"