Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove bsc1224797 workaround #297

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
14 changes: 0 additions & 14 deletions ansible/playbooks/tasks/azure-cluster-bootstrap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,6 @@
retries: 3
delay: 60

- name: Ensure cluster dependencies for SLES >= 15-SP4 are installed
community.general.zypper:
name: "{{ item }}" # Caution, no version control here (yet)
state: present
loop:
- fence-agents-azure-arm # Workaround for bsc#1224797. We should remove this line once the base OS images include the package
register: result
until: result is succeeded
retries: 3
delay: 60
when:
- ansible_distribution_version is version('15.4', '>=') or
ansible_distribution_version is version('12.5', '==')

- name: Get the status of all extensions
ansible.builtin.command:
cmd: SUSEConnect -s
Expand Down