diff options
author | Marco Platania <platania@research.att.com> | 2018-09-13 12:25:11 -0400 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2018-09-13 12:25:11 -0400 |
commit | 8ae23f9f45c8a481bec5238ecc759ac0c23538a6 (patch) | |
tree | 3a34094c1895c9a71fd04b48a119aa9c4be093c7 /heat/vLBMS | |
parent | f1069d8f9de22aded36ee82ac3edb92271b36e0b (diff) |
Prevent package installation failures in VNFs
Add apt-get update to the user_data parts of the VNF Heat templates to prevent failures of package installation
Change-Id: Iaa2e54f5dc7e88dc2891f4deddfebc0d2cde22e7
Issue-ID: INT-660
Signed-off-by: Marco Platania <platania@research.att.com>
Diffstat (limited to 'heat/vLBMS')
-rw-r--r-- | heat/vLBMS/base_vlb.yaml | 3 | ||||
-rw-r--r-- | heat/vLBMS/dnsscaling.yaml | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/heat/vLBMS/base_vlb.yaml b/heat/vLBMS/base_vlb.yaml index f3d5f1c8..ff5da416 100644 --- a/heat/vLBMS/base_vlb.yaml +++ b/heat/vLBMS/base_vlb.yaml @@ -310,6 +310,7 @@ resources: echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt # Download and run install script + apt-get update apt-get -y install unzip if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vlbms&a=vlbms-scripts&e=zip&v=__install_script_version__" -o /opt/vlbms-scripts-__install_script_version__.zip @@ -380,6 +381,7 @@ resources: echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt # Download and run install script + apt-get update apt-get -y install unzip if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vlbms&a=vlbms-scripts&e=zip&v=__install_script_version__" -o /opt/vlbms-scripts-__install_script_version__.zip @@ -451,6 +453,7 @@ resources: echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt # Download and run install script + apt-get update apt-get -y install unzip if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vlbms&a=vlbms-scripts&e=zip&v=__install_script_version__" -o /opt/vlbms-scripts-__install_script_version__.zip diff --git a/heat/vLBMS/dnsscaling.yaml b/heat/vLBMS/dnsscaling.yaml index a3707bfb..db0d8d76 100644 --- a/heat/vLBMS/dnsscaling.yaml +++ b/heat/vLBMS/dnsscaling.yaml @@ -211,6 +211,7 @@ resources: echo "__nexus_artifact_repo__" > /opt/config/nexus_artifact_repo.txt # Download and run install script + apt-get update apt-get -y install unzip if [[ "__install_script_version__" =~ "SNAPSHOT" ]]; then REPO=snapshots; else REPO=releases; fi curl -k -L "__nexus_artifact_repo__/service/local/artifact/maven/redirect?r=${REPO}&g=org.onap.demo.vnf.vlbms&a=vlbms-scripts&e=zip&v=__install_script_version__" -o /opt/vlbms-scripts-__install_script_version__.zip |