diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2018-01-26 03:04:32 +0100 |
---|---|---|
committer | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2018-02-05 01:12:06 +0100 |
commit | 6a4b936669282c88b9842d78b9add1e64864aec6 (patch) | |
tree | 34b8e64773089f52f5ac8ea3980972ccc38ad2ac /ci/deploy.sh | |
parent | 165772e48a69ebc2a69c0ed94828d2f91110af81 (diff) |
[vPDF] Use local-virtual1, unify pkg requirements
Until PDF/IDF land in Pharos for all our virtual PODs, use a common
vPDF we already provide as an example to mimic the old hardcoded
behavior while leveraging PDF/IDF parameterization.
As a consequence, python requirements previously only needed for
baremetal should now also be installed for virtual deploys too.
JIRA: FUEL-322
Change-Id: Ied1c907275285a9086450a15491ae516a0db1be2
Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-x | ci/deploy.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh index 5026d2d84..9d82b73c5 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -195,8 +195,11 @@ do ;; p) TARGET_POD=${OPTARG} - if [[ "${TARGET_POD}" =~ "virtual" ]]; then + if [[ "${TARGET_POD}" =~ virtual ]]; then DEPLOY_TYPE='virtual' + # All vPODs will use 'local-virtual1' PDF/IDF for now + TARGET_LAB='local' + TARGET_POD='virtual1' fi ;; P) |