From 8b838bc65763af4c4bdd0c71b2f14dbc626062f5 Mon Sep 17 00:00:00 2001 From: Jonas Juselius Date: Tue, 27 Oct 2020 18:47:59 +0100 Subject: [PATCH] Add script to copy bootstrapping chart and scripts --- bootstrap/copy-kube-system-bootstrap | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 bootstrap/copy-kube-system-bootstrap diff --git a/bootstrap/copy-kube-system-bootstrap b/bootstrap/copy-kube-system-bootstrap new file mode 100755 index 0000000..518bbc0 --- /dev/null +++ b/bootstrap/copy-kube-system-bootstrap @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +TOP=@out@/share/kube-system-bootstrap +dest=kube-system-bootstrap +[ $# = 1 ] && dest=$1 +cp -r $TOP $dest +chmod -R ug+w $dest + +# vim:ft=sh