Update onboarding process on README
Change-Id: I38411e33b4fc9e595dc15fdf33a4f95417702e52
diff --git a/README.md b/README.md
index 6e97e9f..6e8d8c4 100644
--- a/README.md
+++ b/README.md
@@ -6,19 +6,19 @@
```
xos_services:
- - name: vPGWC
- path: orchestration/xos_services/vPGWC
+ - name: vpgwc
+ path: orchestration/xos_services/vpgwc
keypair: mcord_rsa
synchronizer: true
```
-Once you have added the service, you will need to rebuilt and redeploy the XOS containers from source. Login to the `corddev` vm and `cd /cord/build`
+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
-$ ./gradlew -PdeployConfig=config/mcord_in_a_box.yml PIprepPlatform
```
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:
@@ -26,7 +26,7 @@
```
$ 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"
+$ 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"
```
@@ -41,4 +41,4 @@
```
$ xos-teardown; xos-pull; xos-launch; compute-node-refresh
-```
\ No newline at end of file
+```