summaryrefslogtreecommitdiffstats
path: root/playbooks
diff options
context:
space:
mode:
authorJan Chaloupka <jchaloup@redhat.com>2017-09-25 17:20:35 +0200
committerJan Chaloupka <jchaloup@redhat.com>2017-09-26 12:57:58 +0200
commitd075df2e9eb45f007f35cde2d502d32ee8d14faf (patch)
treea4f09d4200c140e5a8383ddad5aba6f4d1427a70 /playbooks
parentfa83e187398b03cb8118234cb92f42c200c5e227 (diff)
downloadopenshift-d075df2e9eb45f007f35cde2d502d32ee8d14faf.tar.gz
openshift-d075df2e9eb45f007f35cde2d502d32ee8d14faf.tar.bz2
openshift-d075df2e9eb45f007f35cde2d502d32ee8d14faf.tar.xz
openshift-d075df2e9eb45f007f35cde2d502d32ee8d14faf.zip
Set the etcd backend quota to 4GB by default
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/common/openshift-cluster/upgrades/etcd/main.yml6
-rw-r--r--playbooks/common/openshift-cluster/upgrades/etcd/upgrade.yml6
2 files changed, 6 insertions, 6 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/etcd/main.yml b/playbooks/common/openshift-cluster/upgrades/etcd/main.yml
index 64abc54e7..46a062000 100644
--- a/playbooks/common/openshift-cluster/upgrades/etcd/main.yml
+++ b/playbooks/common/openshift-cluster/upgrades/etcd/main.yml
@@ -22,3 +22,9 @@
- name: Perform etcd upgrade
include: ./upgrade.yml
when: openshift_etcd_upgrade | default(true) | bool
+
+- name: Backup etcd
+ include: backup.yml
+ vars:
+ etcd_backup_tag: "post-3.0-"
+ when: openshift_etcd_backup | default(true) | bool
diff --git a/playbooks/common/openshift-cluster/upgrades/etcd/upgrade.yml b/playbooks/common/openshift-cluster/upgrades/etcd/upgrade.yml
index a3446ef84..d71c96cd7 100644
--- a/playbooks/common/openshift-cluster/upgrades/etcd/upgrade.yml
+++ b/playbooks/common/openshift-cluster/upgrades/etcd/upgrade.yml
@@ -106,9 +106,3 @@
when:
- ansible_distribution == 'Fedora'
- not openshift.common.is_containerized | bool
-
-- name: Backup etcd
- include: backup.yml
- vars:
- etcd_backup_tag: "post-3.0-"
- when: openshift_etcd_backup | default(true) | bool