Bugfix: missing shebang lines in pre_stop

These missing lines were causing immediate failure of the pre stop
scripts, leading to these anchors being left around when relabeling
nodes.

Change-Id: Id073d4fe0d465f99743a0f418bb152b9c87999fa
This commit is contained in:
Mark Burnett 2017-10-23 21:23:39 -05:00
parent 6a6ce221f1
commit f175b3f79c
3 changed files with 9 additions and 3 deletions

View File

@ -1,4 +1,6 @@
#!/bin/sh
set -x
touch /tmp/stop
sleep 10000
sleep {{ .Values.anchor.period }}

View File

@ -1,4 +1,6 @@
#!/bin/sh
set -x
touch /tmp/stop
sleep 10000
sleep {{ .Values.anchor.period }}

View File

@ -1,4 +1,6 @@
#!/bin/sh
set -x
touch /tmp/stop
sleep 10000
sleep {{ .Values.anchor.period }}