Add script to copy bootstrapping chart and scripts

This commit is contained in:
Jonas Juselius
2020-10-27 18:47:59 +01:00
parent cf63a8a32e
commit 8b838bc657

View File

@@ -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