diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2018-04-17 11:35:48 -0700 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-04-17 12:02:00 -0700 |
commit | 19c81b4d853c6517ae6ee367195a75271a8bcf35 (patch) | |
tree | a8b0f03af9f4e984af3bfd20f52b09f374d78f14 /deployment/heat/onap-oom/k8s_vm_entrypoint.sh | |
parent | edc750560c621273412f6512807838e93e6a274e (diff) |
Use integration-override.yaml in OOM deploy script
Change-Id: I2c8417b9339715b733f585ae52fd35251d9ca509
Issue-ID: INT-381
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'deployment/heat/onap-oom/k8s_vm_entrypoint.sh')
-rw-r--r-- | deployment/heat/onap-oom/k8s_vm_entrypoint.sh | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/deployment/heat/onap-oom/k8s_vm_entrypoint.sh b/deployment/heat/onap-oom/k8s_vm_entrypoint.sh index d483e73df..f4c6eb6a5 100644 --- a/deployment/heat/onap-oom/k8s_vm_entrypoint.sh +++ b/deployment/heat/onap-oom/k8s_vm_entrypoint.sh @@ -125,6 +125,7 @@ export HOME=/root # Clone OOM: cd ~ git clone -b master http://gerrit.onap.org/r/oom +cd oom git log -1 # Update values.yaml to point to docker-proxy instead of nexus3: @@ -136,6 +137,16 @@ sed -i 's/#repositorySecret:/repositorySecret:/g' onap/values.yaml git diff +# Clone integration: +cd ~ +git clone -b master http://gerrit.onap.org/r/integration +cd integration +git log -1 + +cd ~ +ln -s ~/integration/deployment/heat/onap-oom/env/__lab_name__/integration-override.yaml + + # version control the persistence volume to see what's happening mkdir -p /dockerdata-nfs/ cd /dockerdata-nfs/ @@ -157,7 +168,7 @@ helm repo add local http://127.0.0.1:8879 helm repo list make all helm search -l | grep local -helm install local/onap -n dev --namespace onap +helm install local/onap -n dev --namespace onap -f ~/integration/deployment/heat/onap-oom/env/__lab_name__/integration-override.yaml # Check ONAP status: sleep 3 |