We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee415bb + bb7261f commit 36dbec6Copy full SHA for 36dbec6
ci/deploy-logging-dependencies/tasks/deploy-loki.yml
@@ -19,5 +19,10 @@
19
20
- name: Wait for the lokistack to be ready
21
ansible.builtin.command:
22
- cmd: |
23
- oc wait --timeout=500s --for condition=Ready=True --namespace=openshift-logging lokistacks logging-loki
+ cmd: >
+ oc get lokistack logging-loki -n openshift-logging
24
+ -o jsonpath='{.status.conditions[?(@.type=="Ready")].status}'
25
+ register: loki_ready
26
+ until: loki_ready.stdout == "True"
27
+ retries: 40
28
+ delay: 15
0 commit comments