From 570db0a6ad8dc821d2e08246dfa1509b412d4c8d Mon Sep 17 00:00:00 2001 From: Michal Zegan Date: Tue, 4 Jun 2019 16:27:40 +0200 Subject: Replace jinja for with filter expression in helm deploy call This replaces jinja for constructions used to add helm arguments with jinja filter usage. Change-Id: Ia47635466f4a9251d1f33a42080d3538fc52587d Issue-ID: OOM-1911 Signed-off-by: Michal Zegan --- ansible/roles/application/tasks/install.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ansible/roles') diff --git a/ansible/roles/application/tasks/install.yml b/ansible/roles/application/tasks/install.yml index 2ac2fd6b..bee01e17 100644 --- a/ansible/roles/application/tasks/install.yml +++ b/ansible/roles/application/tasks/install.yml @@ -81,8 +81,8 @@ {{ app_helm_release_name }} {{ helm_repository_name }}/{{ app_helm_chart_name }} --namespace {{ app_kubernetes_namespace }} - {% for arg in helm_override_files %} {{ '-f ' + arg }} {% endfor %} - {% for arg in helm_extra_install_options %} {{ arg.opt }} {% endfor %} + {{ helm_override_files | map('regex_replace', '^', '-f ') | join(' ') }} + {{ helm_extra_install_options | map(attribute='opt') | join(' ') }} changed_when: true # when executed its a changed type of action register: helm_install failed_when: helm_install.stderr -- cgit 1.2.3-korg