diff options
author | Neha Jain <neha.jain3@amdocs.com> | 2018-04-05 11:51:29 -0400 |
---|---|---|
committer | Neha Jain <neha.jain3@amdocs.com> | 2018-04-05 11:51:35 -0400 |
commit | de45c68c288c44af517d4a403b8a154a715df555 (patch) | |
tree | 7b6c2662d129094f4b01cf4293753893c8f8f3b6 /kubernetes/sdnc/resources/geo/bin/sdnc.isPrimaryCluster | |
parent | 283a3d9cbb7e9d18294bfaa6f67f980880e57d4a (diff) |
Multi-site High-availability Manual Failover (PoC)
Change-Id: I0d5644790441099434322d486f4ba014fd8bc1f7
Signed-off-by: Neha Jain <neha.jain3@amdocs.com>
Issue-ID: SDNC-214
Diffstat (limited to 'kubernetes/sdnc/resources/geo/bin/sdnc.isPrimaryCluster')
-rwxr-xr-x | kubernetes/sdnc/resources/geo/bin/sdnc.isPrimaryCluster | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/kubernetes/sdnc/resources/geo/bin/sdnc.isPrimaryCluster b/kubernetes/sdnc/resources/geo/bin/sdnc.isPrimaryCluster new file mode 100755 index 0000000000..8e816c4153 --- /dev/null +++ b/kubernetes/sdnc/resources/geo/bin/sdnc.isPrimaryCluster @@ -0,0 +1,19 @@ +#!/bin/bash + +OOM_HOME=${OOM_HOME:-$HOME} + +IS_PRIMARY_CLUSTER=`awk '/isPrimaryODLCluster/ {print $2}' ${OOM_HOME}/oom/kubernetes/sdnc/values.yaml` + +if [ "$?" -eq "2" ]; then + echo "Make sure you are ubuntu user." >&2 +fi + +case $IS_PRIMARY_CLUSTER in +true|false) + echo $IS_PRIMARY_CLUSTER + ;; +*) + echo "NOT CLUSTERED" + exit 1 + ;; +esac |