diff options
author | 2019-05-23 14:34:22 +0200 | |
---|---|---|
committer | 2019-05-29 10:35:12 +0000 | |
commit | e49f58dc4fd0924f9bf031391ff9a6052e3aaaf2 (patch) | |
tree | 28e34fbfe595df54494c9cedd090ae87fe507cc2 /ansible/roles/application/tasks | |
parent | b1fe78553ea7d1caf90c1d52e195cd8f2a082008 (diff) |
Add support for extra helm install arguments
Change-Id: Ie0b4e812acf6fba4e4b8f082533ab2f998456095
Issue-ID: OOM-1877
Signed-off-by: Petr OspalĂ˝ <p.ospaly@partner.samsung.com>
Diffstat (limited to 'ansible/roles/application/tasks')
-rw-r--r-- | ansible/roles/application/tasks/install.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ansible/roles/application/tasks/install.yml b/ansible/roles/application/tasks/install.yml index cdc7ced0..bdf6e511 100644 --- a/ansible/roles/application/tasks/install.yml +++ b/ansible/roles/application/tasks/install.yml @@ -72,6 +72,7 @@ {{ helm_repository_name }}/{{ app_helm_chart_name }} --namespace {{ app_kubernetes_namespace }} {{ '' if app_skip_helm_override else '-f ' + app_helm_override_file }} + {% for arg in helm_extra_install_options %} {{ arg.opt }} {% endfor %} changed_when: true # when executed its a changed type of action register: helm_install failed_when: helm_install.stderr |