diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2021-02-25 02:59:50 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2021-02-25 02:59:50 +0100 |
commit | b87109ff07443670a0c9ad0ab8ddfda548fa16c5 (patch) | |
tree | dae10d9213ff974e1b17bbe927cdc712820a0ba8 /roles/ands_openshift/tasks/storage_resources.yml | |
parent | 1fb49d8220cad74d7221863754c919e3195a3d37 (diff) | |
download | ands-b87109ff07443670a0c9ad0ab8ddfda548fa16c5.tar.gz ands-b87109ff07443670a0c9ad0ab8ddfda548fa16c5.tar.bz2 ands-b87109ff07443670a0c9ad0ab8ddfda548fa16c5.tar.xz ands-b87109ff07443670a0c9ad0ab8ddfda548fa16c5.zip |
Some changes of syntactic sugar for Ansible 3.9 compatibility
Diffstat (limited to 'roles/ands_openshift/tasks/storage_resources.yml')
-rw-r--r-- | roles/ands_openshift/tasks/storage_resources.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/ands_openshift/tasks/storage_resources.yml b/roles/ands_openshift/tasks/storage_resources.yml index c83c677..3b051d8 100644 --- a/roles/ands_openshift/tasks/storage_resources.yml +++ b/roles/ands_openshift/tasks/storage_resources.yml @@ -12,7 +12,7 @@ template: gfs-svc.yml template_path: "{{ storage_template_path }}" project: "{{ prj_item }}" - recreate: "{{ result | changed | ternary (true, false) }}" + recreate: "{{ result is changed | ternary (true, false) }}" with_items: "{{ ands_openshift_projects.keys() }}" loop_control: loop_var: prj_item @@ -27,7 +27,7 @@ template: gfs-ep.yml template_path: "{{ storage_template_path }}" project: "{{ prj_item }}" - recreate: "{{ result | changed | ternary (true, false) }}" + recreate: "{{ result is changed | ternary (true, false) }}" with_items: "{{ ands_openshift_projects.keys() }}" loop_control: loop_var: prj_item |