aboutsummaryrefslogtreecommitdiff
path: root/zookeeper/bootstrap/pv.sh
diff options
context:
space:
mode:
authorStaffan Olsson <staffan@repos.se>2016-10-25 12:17:05 +0200
committerStaffan Olsson <staffan@repos.se>2016-10-25 12:17:05 +0200
commit01061ae0ad797b944fff7f01116e857e8b762f19 (patch)
tree52da057a30841867d3d74a2276194dc462b6889e /zookeeper/bootstrap/pv.sh
parent90f121965e19ccc36bd5ffb591ff469d97cbdca0 (diff)
parent8e7be7e60a2812c0ecf244016581fba6ee11bbfa (diff)
downloadkubernetes-kafka-nopetset-zk.tar.gz
kubernetes-kafka-nopetset-zk.tar.bz2
kubernetes-kafka-nopetset-zk.zip
Merge branch 'zookeeper-5-nodes' into nopetset-zknopetset-zk
Diffstat (limited to 'zookeeper/bootstrap/pv.sh')
-rwxr-xr-xzookeeper/bootstrap/pv.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/zookeeper/bootstrap/pv.sh b/zookeeper/bootstrap/pv.sh
deleted file mode 100755
index ade25c5..0000000
--- a/zookeeper/bootstrap/pv.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-echo "Note that in for example GKE a PetSet will have PersistentVolume(s) and PersistentVolumeClaim(s) created for it automatically"
-
-dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && cd .. && pwd )"
-path="$dir/data"
-echo "Please enter a path where to store data during local testing: ($path)"
-read newpath
-[ -n "$newpath" ] && path=$newpath
-
-cat $dir/bootstrap/pv-template.yml | sed "s|/tmp/k8s-data|$path|" | kubectl create -f -