Setup overcloud user and administrative accounts.

To avoid polluting incubator with the cd cloud specific knowledge,
like the networking, we pass in the list of users and administrators.
Note that we could just make this hidden, but that makes it harder to
introspect. The incubator code will consider these lists authoritative
and just consult deploy-environment state for the passwords to inject
for users without accounts in the cloud.

Change-Id: I1a6cf06d1a72f4fee6ab198ab4db5d803fbb7202
This commit is contained in:
Robert Collins
2013-10-12 11:24:10 +13:00
parent 6a30e3aa31
commit 336a80b3af

View File

@@ -21,7 +21,10 @@ while true; do
source /opt/stack/tripleo-incubator/scripts/setup-env /opt/stack
source /root/stackrc
set +e
devtest_overcloud.sh vlan25 138.35.77.4/25 eth2 138.35.77.1 138.35.77.131 138.35.77.254 138.35.77.128/25
devtest_overcloud.sh vlan25 138.35.77.4/25 eth2 138.35.77.1 138.35.77.131 \
138.35.77.254 138.35.77.128/25 \
$TRIPLEO_ROOT/tripleo-incubator/tripleo-cloud/tripleo-cd-admins \
$TRIPLEO_ROOT/tripleo-incubator/tripleo-cloud/tripleo-cd-users
RESULT=$?
set -e
MSG=$(echo "************** overcloud complete status=$RESULT ************")