Skip to content

Commit

Permalink
Merge pull request #279 from BillAnastasiadis/gcp12
Browse files Browse the repository at this point in the history
Install missing fence_gce dependency
  • Loading branch information
alvarocarvajald authored Oct 8, 2024
2 parents 7c65d88 + 38cf50d commit 1321bcd
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: 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 1321bcd

Please sign in to comment.