diff options
author | 2021-02-08 13:48:06 +0100 | |
---|---|---|
committer | 2021-02-09 08:33:42 +0000 | |
commit | 3e8ac4b4ca407f5185dfa4becc22f56dc750afe7 (patch) | |
tree | 880b06f9d0cc66f277712dc8b30eb8445fdc7d99 /ansible/test/bin | |
parent | 77324013ff407183b0d9729bd335d8bf3cc72b79 (diff) |
Customize helm "--timeout" option format if running helm v3
Helm v3 requires unit definition for 'timeout' option which is not
supported by Helm v2.
Change-Id: Ia5839e5c412be1700459c70d43d2e6cc0400633d
Issue-ID: OOM-2665
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'ansible/test/bin')
-rwxr-xr-x | ansible/test/bin/install-molecule.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ansible/test/bin/install-molecule.sh b/ansible/test/bin/install-molecule.sh index ab6de436..4df06684 100755 --- a/ansible/test/bin/install-molecule.sh +++ b/ansible/test/bin/install-molecule.sh @@ -41,5 +41,6 @@ source ${VENV_PATH}/bin/activate # Install Molecule if [ ! -z ${VIRTUAL_ENV} ]; then echo "Activated virtual env in ${VIRTUAL_ENV}" - pip -q install molecule==2.20 ansible==2.7.8 ansible-lint==4.2.0 docker pyopenssl + pip -q install -U pip + pip -q install pyopenssl molecule==2.20 ansible==2.7.8 ansible-lint==4.2.0 docker fi |