Skip to content

Commit

Permalink
Merge pull request #27 from ggallen/CPAAS-3659
Browse files Browse the repository at this point in the history
Insure only difference from v0.0.1 is addition of Role to filter order.
  • Loading branch information
ggallen authored Sep 21, 2022
2 parents c94091c + d011453 commit 6647488
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'

Expand All @@ -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'

Expand Down

0 comments on commit 6647488

Please sign in to comment.