commit | 3ec6e2d1f2ba2fbdc8ca3f06b9329b1ef40476c6 | [log] [tgz] |
---|---|---|
author | Pingping Lin <pingping@onlab.us> | Mon Oct 16 15:11:59 2017 -0700 |
committer | Pingping Lin <pingping@onlab.us> | Thu Oct 19 00:25:52 2017 -0700 |
tree | 8f4aba753cf305896ec29939cee5605189b19216 | |
parent | 1af8fb501c34b15cff6ad6c4d93a420737415de1 [diff] |
remove tosca folder since new tosca engine can automatically generate it Change-Id: I50ec69ec36cccbfc71802987e36408cd4fe183ff (cherry picked from commit 0472bb1e06796db6695f8819014fd13c954722ad)
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