File tree Expand file tree Collapse file tree 3 files changed +17
-8
lines changed
ci/deploy-logging-dependencies Expand file tree Collapse file tree 3 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 66 size : 1x.demo
77 storage :
88 schemas :
9- - version : v12
10- effectiveDate : " 2022 -06-01"
9+ - version : v13
10+ effectiveDate : " 2025 -06-01"
1111 secret :
1212 name : logging-loki-s3
1313 type : s3
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ metadata:
3535 name : loki-operator
3636 namespace : openshift-operators-redhat
3737spec :
38- channel : stable-6.1
38+ channel : stable-6.2
3939 installPlanApproval : Automatic
4040 name : loki-operator
4141 source : redhat-operators
@@ -47,7 +47,7 @@ metadata:
4747 name : cluster-logging
4848 namespace : openshift-logging
4949spec :
50- channel : stable-6.1
50+ channel : stable-6.2
5151 installPlanApproval : Automatic
5252 name : cluster-logging
5353 source : redhat-operators
Original file line number Diff line number Diff line change 2121 register : output
2222 until : output.stdout_lines | length != 0
2323
24- - name : Wait for the cluster log forwarder to be ready
25- ansible.builtin.command :
26- cmd : |
27- oc wait --timeout=300s --for condition=Ready=True --namespace=openshift-logging clusterlogforwarder collector
24+ - name : Wait for 2 "True" and 0 "False" conditions in ClusterLogForwarder status
25+ ansible.builtin.shell :
26+ cmd : >
27+ oc get clusterlogforwarder collector -n openshift-logging -o json | jq --raw-output '[
28+ ([.status.conditions[] | select(.status == "True")] | length),
29+ ([.status.conditions[] | select(.status == "False")] | length)
30+ ] | @csv'
31+ register : clf_condition_counts
32+ until : clf_condition_counts.stdout == "2,0"
33+ retries : 20
34+ delay : 20
35+ changed_when : false
36+ check_mode : no
You can’t perform that action at this time.
0 commit comments