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