From 4cfec2b94e0548c7431c950adae463fe690204c0 Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Fri, 28 Jan 2022 12:17:53 +0100 Subject: [PATCH] Add verbosity and debug mode to juju bootstrap Change-Id: If3533f3477776068bc7d4623bb9eca27a9085656 Signed-off-by: garciadeblas --- installers/install_juju.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installers/install_juju.sh b/installers/install_juju.sh index cbcf506f..4ecf0a52 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] -- 2.17.1