summaryrefslogtreecommitdiffstats
path: root/ansible
diff options
context:
space:
mode:
authorBartek Grzybowski <b.grzybowski@partner.samsung.com>2021-11-25 12:40:10 +0100
committerBartek Grzybowski <b.grzybowski@partner.samsung.com>2021-11-25 12:40:10 +0100
commit54415cecda750076dae161dfb3fc0a0cdf211ae9 (patch)
tree8bb1a8271faf811eb1c73458d535d00067f2dcf5 /ansible
parentf5e84ace8123be1520f45c60d0ece9518d4edb73 (diff)
[MOLECULE] Remove separate helm cases from 'application' role verifier
Change-Id: I0a9fc3bad5ec639deabdf50f42f7798974e830bc Issue-ID: OOM-2883 Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'ansible')
-rw-r--r--ansible/roles/application/molecule/default/tests/test_default.py21
1 files changed, 3 insertions, 18 deletions
diff --git a/ansible/roles/application/molecule/default/tests/test_default.py b/ansible/roles/application/molecule/default/tests/test_default.py
index 116205f0..18dc0318 100644
--- a/ansible/roles/application/molecule/default/tests/test_default.py
+++ b/ansible/roles/application/molecule/default/tests/test_default.py
@@ -8,30 +8,15 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
def test_helm_commands(host):
fc = host.file('/tmp/helm_simu_output').content_string.strip()
- helm_release = host.ansible.get_variables()['helm_version']
- if helm_release == 'v2':
- expected_content = """home
-init --upgrade --skip-refresh
-version --tiller-connection-timeout 10
-repo list
-serve
-repo list
-repo add local http://127.0.0.1:8879
-deploy moleculetestapp local/moleculetestapp --namespace \
-moleculetestapp -f /opt/moleculetestapp/helm_charts/onap/resources/\
-overrides/onap-all.yaml -f /opt/moleculetestapp/override.yaml \
---timeout 1800"""
- expected_plugin_path = '/plugins/deploy/deploy.sh'
- elif helm_release == 'v3':
- expected_content = """env
+ expected_content = """env
repo list
repo add local http://127.0.0.1:8879
deploy moleculetestapp local/moleculetestapp --namespace \
moleculetestapp -f /opt/moleculetestapp/helm_charts/onap/resources/\
overrides/onap-all.yaml -f /opt/moleculetestapp/override.yaml \
--timeout 1800s"""
- expected_plugin_path = '/root/.local/share/helm/plugins/deploy/' +\
- 'deploy.sh'
+ expected_plugin_path = '/root/.local/share/helm/plugins/deploy/' +\
+ 'deploy.sh'
assert fc == expected_content
assert host.file(expected_plugin_path).exists