Revert policy keystore
[oom.git] / kubernetes / dcaegen2 / charts / dcae-redis / resources / redis / scripts / redis-cluster-config.sh
1 #!/bin/bash
2 # ================================================================================
3 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4 # ================================================================================
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 # ============LICENSE_END=========================================================
17
18
19 if [[ "$HOSTNAME" == *{{.Chart.Name}}-0 ]]; then
20
21   NODES=""
22   echo "====> wait for all {{.Values.replicaCount}} redis pods up"
23   while [ "$(echo $NODES | wc -w)" -lt {{.Values.replicaCount}} ]
24   do
25     echo "======> $(echo $NODES |wc -w) / {{.Values.replicaCount}} pods up"
26     sleep 5
27     RESP=$(wget -vO- --ca-certificate /var/run/secrets/kubernetes.io/serviceaccount/ca.crt  --header "Authorization: Bearer $(</var/run/secrets/kubernetes.io/serviceaccount/token)" https://$KUBERNETES_SERVICE_HOST:$KUBERNETES_PORT_443_TCP_PORT/api/v1/namespaces/{{.Release.Namespace}}/pods?labelSelector=app={{.Chart.Name}})
28
29     IPS=$(echo $RESP | jq -r '.items[].status.podIP')
30     NODES=""
31     for I in $IPS; do NODES="$NODES $I:{{.Values.service.externalPort}}"; done
32   done
33   echo "====> all {{.Values.replicaCount}} redis cluster pods are up. wait 10 seconds before the next step"; echo
34   sleep 10
35
36   echo "====> Configure the cluster"
37
38   # $NODES w/o quotes
39   redis-trib create --replicas 1 $(echo $NODES |paste -s)
40
41 fi