diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-07-27 16:02:38 -0400 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2017-07-27 16:02:38 -0400 |
commit | 844353c7d2967de111255da925dd93e3ac17c058 (patch) | |
tree | 12a37adcd2ec817249cbe23c6f91ff379631ad31 /roles/etcd_migrate | |
parent | d3d6d6c1bcc81e5b2f3f598f91d32bb245f2d24b (diff) | |
download | openshift-844353c7d2967de111255da925dd93e3ac17c058.tar.gz openshift-844353c7d2967de111255da925dd93e3ac17c058.tar.bz2 openshift-844353c7d2967de111255da925dd93e3ac17c058.tar.xz openshift-844353c7d2967de111255da925dd93e3ac17c058.zip |
Block etcdv3 migration for supported configurations
Diffstat (limited to 'roles/etcd_migrate')
-rw-r--r-- | roles/etcd_migrate/tasks/check.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/etcd_migrate/tasks/check.yml b/roles/etcd_migrate/tasks/check.yml index 800073873..b66696b55 100644 --- a/roles/etcd_migrate/tasks/check.yml +++ b/roles/etcd_migrate/tasks/check.yml @@ -1,4 +1,8 @@ --- +- fail: + msg: "Currently etcd v3 migration is unsupported while we test it more thoroughly" + when: not openshift_enable_unsupported_configurations | default(false) | bool + # Check the cluster is healthy - include: check_cluster_health.yml |