From 039dda58b3cd9b34abccf1f8f46eb825c1d45545 Mon Sep 17 00:00:00 2001 From: Brenton Leanhardt Date: Mon, 4 Apr 2016 11:47:45 -0400 Subject: Pacemaker is unsupported for 3.2 --- playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml | 7 +++++++ roles/openshift_master_cluster/tasks/main.yml | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml index 6804de992..b0286d979 100644 --- a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml +++ b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml @@ -25,6 +25,7 @@ hosts: oo_first_master vars: target_version: "{{ '1.2' if deployment_type == 'origin' else '3.1.1.900' }}" + g_pacemaker_upgrade_url_segment: "{{ 'org/latest' if deployment_type =='origin' else '.com/enterprise/3.1' }}" gather_facts: no tasks: - fail: @@ -33,6 +34,12 @@ deployment types when: deployment_type not in ['atomic-enterprise', 'origin','openshift-enterprise', 'online'] + - fail: + msg: > + This upgrade does not support Pacemaker: + https://docs.openshift.{{ g_pacemaker_upgrade_url_segment }}/install_config/upgrading/pacemaker_to_native_ha.html + when: openshift.master.cluster_method == 'pacemaker' + - fail: msg: > openshift_pkg_version is {{ openshift_pkg_version }} which is not a diff --git a/roles/openshift_master_cluster/tasks/main.yml b/roles/openshift_master_cluster/tasks/main.yml index 40705d357..0543872c9 100644 --- a/roles/openshift_master_cluster/tasks/main.yml +++ b/roles/openshift_master_cluster/tasks/main.yml @@ -3,6 +3,10 @@ msg: "Not possible on atomic hosts for now" when: openshift.common.is_containerized | bool +- fail: + msg: "Pacemaker HA is unsupported on OpenShift Enterprise 3.2 and Origin 1.2" + when: openshift.master.cluster_method == "pacemaker" and openshift.common.version_gte_3_2_or_1_2 | bool + - name: Test if cluster is already configured command: pcs status register: pcs_status -- cgit v1.2.3