From: Bartek Grzybowski Date: Mon, 19 Apr 2021 14:52:02 +0000 (+0200) Subject: [MOLECULE] Fix 'application' role run X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=91cb0cb6886ff6773e6ab2359aa3abd10406f7f2;p=oom%2Foffline-installer.git [MOLECULE] Fix 'application' role run Add ansible-lint ignore rule to skip warning about unnamed task Fix verifier test Change-Id: Ie75c379b1678a594ad9a3e95442d04fc58939e6e Issue-ID: OOM-2722 Signed-off-by: Bartek Grzybowski --- diff --git a/ansible/roles/application/molecule/default/tests/test_default.py b/ansible/roles/application/molecule/default/tests/test_default.py index f57f5afc..116205f0 100644 --- a/ansible/roles/application/molecule/default/tests/test_default.py +++ b/ansible/roles/application/molecule/default/tests/test_default.py @@ -7,7 +7,7 @@ testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( def test_helm_commands(host): - fc = host.file('/tmp/helm_simu_output').content_string + 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 @@ -37,7 +37,7 @@ overrides/onap-all.yaml -f /opt/moleculetestapp/override.yaml \ def test_helm_override_file(host): - fc = host.file('/opt/moleculetestapp/override.yaml').content_string + fc = host.file('/opt/moleculetestapp/override.yaml').content_string.strip() expected_content = """global: cacert: 'this is dummy server certificate value diff --git a/ansible/roles/application/tasks/main.yml b/ansible/roles/application/tasks/main.yml index 3018e95f..aa24374a 100644 --- a/ansible/roles/application/tasks/main.yml +++ b/ansible/roles/application/tasks/main.yml @@ -19,6 +19,6 @@ - include_tasks: post-install.yml when: install_needed -- debug: +- debug: # noqa unnamed-task msg: "NOTE, nothing done as application Helm charts does not exist!" when: not install_needed