summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-etcd/migrate.yml
diff options
context:
space:
mode:
authorJan Chaloupka <jchaloup@redhat.com>2017-09-26 16:11:20 +0200
committerJan Chaloupka <jchaloup@redhat.com>2017-09-26 16:26:12 +0200
commit5c9d649ded1a1d56dba503488e7350512be3de10 (patch)
treea7e47eb8357a3b7687e598124ae9705da0eb87f6 /playbooks/common/openshift-etcd/migrate.yml
parent89dcad261fdf7de68c307ef9d550705ae7c96d5a (diff)
downloadopenshift-5c9d649ded1a1d56dba503488e7350512be3de10.tar.gz
openshift-5c9d649ded1a1d56dba503488e7350512be3de10.tar.bz2
openshift-5c9d649ded1a1d56dba503488e7350512be3de10.tar.xz
openshift-5c9d649ded1a1d56dba503488e7350512be3de10.zip
make difference filter output a list for Python3
Diffstat (limited to 'playbooks/common/openshift-etcd/migrate.yml')
-rw-r--r--playbooks/common/openshift-etcd/migrate.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/common/openshift-etcd/migrate.yml b/playbooks/common/openshift-etcd/migrate.yml
index 06e0607bd..fb4e576c4 100644
--- a/playbooks/common/openshift-etcd/migrate.yml
+++ b/playbooks/common/openshift-etcd/migrate.yml
@@ -47,7 +47,7 @@
| oo_select_keys(groups.oo_etcd_to_migrate)
| oo_collect('inventory_hostname', {'r_etcd_common_backup_complete': true}) }}"
- set_fact:
- etcd_backup_failed: "{{ groups.oo_etcd_to_migrate | difference(etcd_backup_completed) }}"
+ etcd_backup_failed: "{{ groups.oo_etcd_to_migrate | difference(etcd_backup_completed) | list }}"
- fail:
msg: "Migration cannot continue. The following hosts did not complete etcd backup: {{ etcd_backup_failed | join(',') }}"
when:
@@ -113,7 +113,7 @@
| oo_select_keys(groups.oo_etcd_to_migrate)
| oo_collect('inventory_hostname', {'r_etcd_migrate_success': true}) }}"
- set_fact:
- etcd_migration_failed: "{{ groups.oo_etcd_to_migrate | difference(etcd_migration_completed) }}"
+ etcd_migration_failed: "{{ groups.oo_etcd_to_migrate | difference(etcd_migration_completed) | list }}"
- name: Add TTLs on the first master
hosts: oo_first_master[0]