commit | 85ce3c80594aa2a84989049da2b287c99cc70738 | [log] [tgz] |
---|---|---|
author | Omar Abdelkader <omikader@gmail.com> | Fri Sep 15 12:50:05 2017 -0500 |
committer | Omar Abdelkader <omikader@gmail.com> | Fri Sep 15 12:50:05 2017 -0500 |
tree | 25e5d2c65beecaef4908384a8082d37f8d196353 | |
parent | 3f40d1cf24d8910b3cca08895d6aa2c9c2a71ca8 [diff] |
add xos_base_props to Vendor model Change-Id: I7516b2928a49b25f35f788c5b960e54b2abf916d
To onboard this service in your system, you can add the service to the mcord.yml
profile manifest:
xos_services: - name: vmme path: orchestration/xos_services/vmme 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