Skip to content

Commit

Permalink
Install missing fence_gce dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
BillAnastasiadis committed Oct 8, 2024
1 parent 03701e5 commit 834adcb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ansible/playbooks/tasks/cluster-bootstrap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,16 @@
register: stonith_config_result
failed_when: "'ERROR' in stonith_config_result.stderr"

# This is a workaround for https://bugzilla.suse.com/show_bug.cgi?id=1231153
# If it is fixed, this task will no longer be needed
- name: Install python-httplib2 via zypper
zypper:
name: python-httplib2
state: present
when: ansible_distribution_major_version == '12'
register: httplib2_zypper
ignore_errors: yes

Check warning on line 281 in ansible/playbooks/tasks/cluster-bootstrap.yaml

View workflow job for this annotation

GitHub Actions / build

281:18 [truthy] truthy value should be one of [false, true]

# The following STONITH commands for GCP have been adapted from
# https://cloud.google.com/solutions/sap/docs/sap-hana-ha-config-sles#create_the_fencing_device_resources
- name: Configure GCP Native Fencing STONITH for Primary
Expand Down

0 comments on commit 834adcb

Please sign in to comment.