blob: a946b0fb7d2d01bb8d73ee4bd53619a0ec530f9b (
plain)
1
2
3
4
5
6
7
|
#!/bin/bash
set -ex
controllername=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployconfig.yaml`
cloudname=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployconfig.yaml`
juju bootstrap $controllername $cloudname --debug --to bootstrap.maas --bootstrap-series=xenial
|