Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions roles/cifmw_setup/tasks/infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@
ansible.builtin.import_role:
name: openshift_setup

- name: Wait for cluster to stabilize after openshift_setup changes
environment:
KUBECONFIG: "{{ cifmw_openshift_kubeconfig }}"
PATH: "{{ cifmw_path }}"
ansible.builtin.command:
Comment thread
mnietoji marked this conversation as resolved.
cmd: >-
oc adm wait-for-stable-cluster --minimum-stable-period=5s --timeout=30m
changed_when: false

- name: Deploy Observability operator.
when:
- cifmw_deploy_obs is defined
Expand Down
Loading