X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=installers%2Finstall_juju.sh;h=72c08ceedbfda983c8c6d4b4efe9614768ba4847;hb=91c1941ac076d3c03b78034ad50cd1984413a98a;hp=3b878a72f24ad516e7939047fd4f03f3a573a689;hpb=8eff33a4455f10fb0bff553a39e7966f0d566fde;p=osm%2Fdevops.git diff --git a/installers/install_juju.sh b/installers/install_juju.sh index 3b878a72..72c08cee 100755 --- a/installers/install_juju.sh +++ b/installers/install_juju.sh @@ -55,7 +55,7 @@ function juju_createcontroller_k8s(){ [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function cat $HOME/.kube/config | juju add-k8s $OSM_VCA_K8S_CLOUDNAME --client \ || FATAL "Failed to add K8s endpoint and credential for client in cloud $OSM_VCA_K8S_CLOUDNAME" - juju bootstrap $OSM_VCA_K8S_CLOUDNAME $OSM_STACK_NAME \ + juju bootstrap -v --debug $OSM_VCA_K8S_CLOUDNAME $OSM_STACK_NAME \ --config controller-service-type=loadbalancer \ --agent-version=$JUJU_AGENT_VERSION \ || FATAL "Failed to bootstrap controller $OSM_STACK_NAME in cloud $OSM_VCA_K8S_CLOUDNAME" @@ -107,9 +107,9 @@ EOF function juju_createcontroller() { [ -z "${DEBUG_INSTALL}" ] || DEBUG beginning of function if ! juju show-controller $OSM_STACK_NAME &> /dev/null; then - # Not found created, create the controller + # Controller not found, create the controller sudo usermod -a -G lxd ${USER} - sg lxd -c "juju bootstrap --bootstrap-series=xenial --agent-version=$JUJU_AGENT_VERSION $OSM_VCA_CLOUDNAME $OSM_STACK_NAME" + sg lxd -c "juju bootstrap -v --debug --bootstrap-series=xenial --agent-version=$JUJU_AGENT_VERSION $OSM_VCA_CLOUDNAME $OSM_STACK_NAME" fi [ $(juju controllers | awk "/^${OSM_STACK_NAME}[\*| ]/{print $1}"|wc -l) -eq 1 ] || FATAL "Juju installation failed" juju controller-config features=[k8s-operators]