diff options
author | 2020-06-23 11:49:28 +0200 | |
---|---|---|
committer | 2020-06-23 11:49:28 +0200 | |
commit | 1c8c4559eb56b5d6dd47d53c11e5e0a0323c55f5 (patch) | |
tree | 518cfcc6eaa9608f99b2138de2361dc0318e1a81 | |
parent | 0f5d632aeb58eb0693fe27d7d6c1fe1e5cdf64bd (diff) |
Upgrade docker-ce and docker-compose releases in deployment package
Ubuntu release in example HOT env file is bumped to
Ubuntu Bionic and related docker tools versions are
upgraded accordingly.
Change-Id: I45b1d94cfcc8ec4513f5e26fd6613f6ebc199e78
Issue-ID: INT-1634
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
-rw-r--r-- | deployment/src/simulators_heat_template.env | 4 | ||||
-rw-r--r-- | deployment/src/simulators_heat_template.yaml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/deployment/src/simulators_heat_template.env b/deployment/src/simulators_heat_template.env index cf2db52..242e46d 100644 --- a/deployment/src/simulators_heat_template.env +++ b/deployment/src/simulators_heat_template.env @@ -1,5 +1,5 @@ parameters: - image_name: ubuntu-14-04-cloud-amd64 + image_name: ubuntu-18-04-cloud-amd64 flavor_name: m1.medium public_net_id: 41eae12a-27f7-4ace-9fda-3cd55c7c0651 private_net_id: 41eae12a-27f7-4ace-9fda-3cd55c7c0651 @@ -7,4 +7,4 @@ parameters: proxy: http://10.10.10.10:8080 vnf_id: simulators_vnf vf_module_id: simulators_vsp - key_name: onap-dev
\ No newline at end of file + key_name: onap-dev diff --git a/deployment/src/simulators_heat_template.yaml b/deployment/src/simulators_heat_template.yaml index a756778..dd80567 100644 --- a/deployment/src/simulators_heat_template.yaml +++ b/deployment/src/simulators_heat_template.yaml @@ -29,8 +29,8 @@ resources: #!/bin/bash set_versions () { - DOCKER_VERSION=17.03 - DOCKER_COMPOSE_VERSION=1.22.0 + DOCKER_VERSION=19.03 + DOCKER_COMPOSE_VERSION=1.26.0 } set_proxy () { |