From d011453d27d778f2dd96dea92ccf6ae65bf0c039 Mon Sep 17 00:00:00 2001 From: Greg Allen Date: Wed, 21 Sep 2022 12:20:30 -0400 Subject: [PATCH] Insure only difference from v0.0.1 is addition of Role to filter order. --- tasks/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index d647f72..065e788 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -29,12 +29,12 @@ kind: ProjectRequest state: "{{ k8s_state }}" validate_certs: False - no_log: global_no_log + no_log: "{{ global_no_log |bool }}" register: result until: result.failed == false delay: 5 retries: 120 - when: create_project + when: create_project |bool - name: Merge and order configs import_tasks: order_configs.yml @@ -48,7 +48,7 @@ state: "{{ k8s_state }}" validate_certs: False definition: "{{ lookup('template', item.key) }}" - no_log: global_no_log + no_log: "{{ global_no_log |bool }}" with_dict: "{{ k8s_secrets }}" when: k8s_secrets | type_debug == 'dict' @@ -60,7 +60,7 @@ state: "{{ k8s_state }}" validate_certs: False definition: "{{ lookup('template', item) }}" - no_log: global_no_log + no_log: "{{ global_no_log |bool }}" with_items: "{{ k8s_secrets }}" when: k8s_secrets | type_debug == 'list'