Skip to content
Snippets Groups Projects
Commit 4cfec2b9 authored by garciadeblas's avatar garciadeblas
Browse files

Add verbosity and debug mode to juju bootstrap


Change-Id: If3533f3477776068bc7d4623bb9eca27a9085656
Signed-off-by: default avatargarciadeblas <gerardo.garciadeblas@telefonica.com>
parent adcf95ed
No related branches found
No related tags found
No related merge requests found
......@@ -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]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment