commit | 9bd2c8df2fc4a3b0a7db62a9e21ffed125f60eab | [log] [tgz] |
---|---|---|
author | Omar Abdelkader <omikader@gmail.com> | Mon Aug 07 19:21:02 2017 -0600 |
committer | Omar Abdelkader <omikader@gmail.com> | Tue Aug 08 18:51:08 2017 -0600 |
tree | 448985984ffc9416d5a75dd88c0e3744161076b4 | |
parent | ab2571867d6fd8047b6fe6f5214ccb53db7ce7b7 [diff] |
refactor vBBU cord-3.0 Change-Id: I843cd7954862a38d05c918de101fb8635d15829c
To onboard this service in your system, you can add the service to the mcord.yml
profile manifest:
xos_services: - name: vbbu path: orchestration/xos_services/vbbu keypair: mcord_rsa synchronizer: true
Once you have added the service, you will need to rebuild and redeploy the XOS containers from source. Login to the corddev
vm and cd /cord/build
$ ./gradlew -PdeployConfig=config/mcord_in_a_box.yml PIprepPlatform $ ./gradlew -PdeployConfig=config/mcord_in_a_box.yml :platform-install:buildImages $ ./gradlew -PdeployConfig=config/mcord_in_a_box.yml :platform-install:publish $ ./gradlew -PdeployConfig=config/mcord_in_a_box.yml :orchestration:xos:publish
Now the new XOS images should be published to the registry on prod
. To bring them up, login to the prod
VM and define these aliases:
$ CORD_PROFILE=$( cat /opt/cord_profile/profile_name ) $ alias xos-pull="docker-compose -p $CORD_PROFILE -f /opt/cord_profile/docker-compose.yml pull" $ alias xos-up="docker-compose -p $CORD_PROFILE -f /opt/cord_profile/docker-compose.yml up -d --remove-orphans" $ alias xos-teardown="pushd /opt/cord/build/platform-install; ansible-playbook -i inventory/head-localhost --extra-vars @/opt/cord/build/genconfig/config.yml teardown-playbook.yml; popd" $ alias compute-node-refresh="pushd /opt/cord/build/platform-install; ansible-playbook -i /etc/maas/ansible/pod-inventory --extra-vars=@/opt/cord/build/genconfig/config.yml compute-node-refresh-playbook.yml; popd"
To pull new images from the database and launch the containers, while retaining the existing XOS database, run:
$ xos-pull; xos-up
Alternatively, to remove the XOS database and reinitialize XOS from scratch, run:
$ xos-teardown; xos-pull; xos-launch; compute-node-refresh