diff options
author | Marco Platania <platania@research.att.com> | 2017-10-12 20:50:46 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-10-12 20:50:46 +0000 |
commit | 2be47c1f61a633b4fd08f4ecb2bbbdd39a08eed6 (patch) | |
tree | 290b47a997422f4e039356a9bf2e86bcd9822afa /docker_upgrade_scripts/README.md | |
parent | 005b9f8c91c3e2f2a01b2d605a325968e42d5205 (diff) | |
parent | 905b71b4fc72c7c091d9bd3dd616b951c75556fa (diff) |
Merge "Initial scripts to upgrade docker ONAP component"
Diffstat (limited to 'docker_upgrade_scripts/README.md')
-rw-r--r-- | docker_upgrade_scripts/README.md | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/docker_upgrade_scripts/README.md b/docker_upgrade_scripts/README.md new file mode 100644 index 00000000..5d981587 --- /dev/null +++ b/docker_upgrade_scripts/README.md @@ -0,0 +1,40 @@ +#Docker Upgrade Scripts + +##Description +These scripts will upgrade docker images in all ONAP components + +##Setting UP + +apt-get install python-pip + +pip install Fabric + +Download all the files and modify onap_docker_upgrade.conf with correct configuration based on infrastructure endpoints + +[keystone_auth] +user = <user_name> +password = <password> +tenant = <tenant> +url = <keystone_url> + +user: User name to access the tenant +Password: Password for the user authentication +tenant: Tenant information +url: keystone endpoint URL. Currently v2.0 is only supported + +[onap] +instance_prefix = <name> + +instance_prefix: ONAP instance prefix configured in heat template or VM name + +Deployment type: 1-nic-nofloat, 1-nic-float, 2-nic +deployment_type = <type> + +deployment_type: Based on infrastructure network setup for VMs + +dcae_key_path = <key_for_dcae_component> +onap_key_path = <key_for_onap_component> + +Run python onap_docker_upgrade.py + +To run daily basis, add the script to cron job and redirect output to a log file |