X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=src%2Ffoundation%2Fscripts%2Fconfig;fp=src%2Ffoundation%2Fscripts%2Fconfig;h=1a541a710aa05974b1838b3bf88668685d69476d;hb=a7baba45cd2403ed658caeedef444a8ceb24f2ed;hp=0000000000000000000000000000000000000000;hpb=16f5e89dd4b251c8a11444aa5514318a262e7c5e;p=iec.git diff --git a/src/foundation/scripts/config b/src/foundation/scripts/config new file mode 100755 index 0000000..1a541a7 --- /dev/null +++ b/src/foundation/scripts/config @@ -0,0 +1,29 @@ +#!/bin/bash +# shellcheck disable=SC2034 + +# Host user which can log into master and each worker nodes +HOST_USER=${HOST_USER:-iec} + +REPO_URL="https://gerrit.akraino.org/r/iec" +#log file +LOG_FILE="kubeadm.log" + + +# Master node IP address +K8S_MASTER_IP="10.169.36.152" + +# HOST_USER's password on Master node +K8S_MASTERPW="123456" + +###################################################### +# +# K8S_WORKER_GROUP is an array which consists of 2 +# parts. One is k8s worker ip address. The other is +# the user password. +# +###################################################### +K8S_WORKER_GROUP=( +"10.169.40.106,123456" +) + +