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.
1 parent aab4e97 commit add25f9Copy full SHA for add25f9
1 file changed
ansible/roles/bootstrap/tasks/main.yml
@@ -42,6 +42,14 @@
42
shell: |
43
oc apply -f {{ dt_path }}/subscriptions.yaml
44
45
+ - name: Wait for observability operator deployment to be created
46
+ shell: |
47
+ oc get deployments/observability-operator -n openshift-operators
48
+ register: obs_deploy
49
+ until: obs_deploy.rc == 0
50
+ retries: 30
51
+ delay: 10
52
+
53
- name: Wait for observability operator to be available
54
55
oc wait deployments/observability-operator --for condition=Available --timeout=300s -n openshift-operators
0 commit comments