diff options
Diffstat (limited to 'scripts/hawakular.sh')
-rwxr-xr-x | scripts/hawakular.sh | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/hawakular.sh b/scripts/hawakular.sh deleted file mode 100755 index 73e3a87..0000000 --- a/scripts/hawakular.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash - -case $1 in - "stop") - oc -n openshift-infra scale --replicas 0 rc/hawkular-metrics - oc -n openshift-infra scale --replicas 0 rc/heapster - oc -n openshift-infra scale --replicas 0 dc/hawkular-cassandra - ;; - "start") - oc -n openshift-infra scale --replicas 0 dc/hawkular-cassandra - sleep 1 - oc -n openshift-infra scale --replicas 0 rc/heapster - sleep 1 - oc -n openshift-infra scale --replicas 0 rc/hawkular-metrics - ;; - *) - echo "Usage: $0 stop/start" -esac |