Browse Source

wait -> delay, doh

Grega Bremec 1 tháng trước cách đây
mục cha
commit
bf8a7a8cdc
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      playbooks/roles/setup-auth/tasks/main.yml

+ 2 - 2
playbooks/roles/setup-auth/tasks/main.yml

@@ -177,7 +177,7 @@
         - co_auth.resources | length == 1
         - (co_auth.resources[0].status | community.general.json_query('conditions[?type==`Progressing`].status]))[0]
       retries: 24
-      wait: 5
+      delay: 5
 
     - name: Wait for co/authentication to finish progressing.
       kubernetes.core.k8s_info:
@@ -192,7 +192,7 @@
         - co_auth.resources | length == 1
         - not (co_auth.resources[0].status | community.general.json_query('conditions[?type==`Progressing`].status]))[0]
       retries: 24
-      wait: 5
+      delay: 5
 
   when: patched_oauth.changed
 ...