commit | 1d4fee62a245e39626b1100b82377c84269baa66 | [log] [tgz] |
---|---|---|
author | Omar Abdelkader <omar@onlab.us> | Wed Jun 28 09:09:44 2017 -0700 |
committer | Omar Abdelkader <omar@onlab.us> | Wed Jun 28 21:15:22 2017 -0700 |
tree | 78c267e66857deca076200da45442cec53317476 | |
parent | 0c80889054eff71f6c81b9b4051cd37d4c8d1fd3 [diff] |
Added README.md file Change-Id: I2a3b5828383e90203a55c16694c02d364f6f1d2c
The vPGWC
service is responsible for dictating QoS and bandwidth for a subscriber's session. It acts as an IP router with support for mobile specific tunneling and signaling protocols and provides access to external PDNs. The vPGWC
service also manages policy enforcement, packet filtration for users, charging support, and lawful interception.
To onboard this service in your system, you can add the service to the mcord.yml
profile manifest:
xos_services: - 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
$ ./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:
$ 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-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