From a1bf3343a667255988794166191fb9afb289f895 Mon Sep 17 00:00:00 2001 From: Hari Sekhon Date: Thu, 27 Aug 2020 12:10:56 +0100 Subject: [PATCH] added install_kustomize.sh --- setup/install_kustomize.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 setup/install_kustomize.sh diff --git a/setup/install_kustomize.sh b/setup/install_kustomize.sh new file mode 100755 index 00000000..baf10807 --- /dev/null +++ b/setup/install_kustomize.sh @@ -0,0 +1,23 @@ +#!/usr/bin/env bash +# vim:ts=4:sts=4:sw=4:et +# +# Author: Hari Sekhon +# Date: 2020-08-27 12:08:44 +0100 (Thu, 27 Aug 2020) +# +# https://github.com/HariSekhon/bash-tools +# +# License: see accompanying Hari Sekhon LICENSE file +# +# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish +# +# https://www.linkedin.com/in/HariSekhon +# + +set -euo pipefail +[ -n "${DEBUG:-}" ] && set -x + +cd ~/bin + +# https://kubernetes-sigs.github.io/kustomize/installation/binaries/ + +curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash