Merge "[ci] Add PDF/IDF config files for 2 virtual PODs"
[iec.git] / src / foundation / scripts / config.sh
1 #!/bin/bash
2
3 # Host user which can log into master and each worker nodes
4 HOST_USER=${HOST_USER:-iec}
5
6 REPO_URL="https://gerrit.akraino.org/r/iec"
7 #log file
8 LOG_FILE="kubeadm.log"
9
10
11 # Master node IP address
12 K8S_MASTER_IP="10.169.36.152"
13
14 # HOST_USER's password on Master node
15 K8S_MASTERPW="123456"
16
17 ######################################################
18 #
19 #  K8S_WORKER_GROUP is an array which consists of 2
20 #  parts. One is k8s worker ip address. The other is
21 #  the user password.
22 #
23 ######################################################
24 K8S_WORKER_GROUP=(
25 "10.169.40.106,123456"
26 )
27
28