diff options
author | Michael Gugino <mgugino@redhat.com> | 2018-01-08 15:59:24 -0500 |
---|---|---|
committer | Michael Gugino <mgugino@redhat.com> | 2018-01-08 15:59:24 -0500 |
commit | aae5250ed482423e7789c2dfb335d99475445493 (patch) | |
tree | dc200580127dd46577b419eb1fe8662382371215 /roles/etcd | |
parent | 74294d8258a4812752434feaf4cd4b512a992af8 (diff) | |
download | openshift-aae5250ed482423e7789c2dfb335d99475445493.tar.gz openshift-aae5250ed482423e7789c2dfb335d99475445493.tar.bz2 openshift-aae5250ed482423e7789c2dfb335d99475445493.tar.xz openshift-aae5250ed482423e7789c2dfb335d99475445493.zip |
ensure containerized bools are cast
Diffstat (limited to 'roles/etcd')
-rw-r--r-- | roles/etcd/tasks/migration/migrate.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/etcd/tasks/migration/migrate.yml b/roles/etcd/tasks/migration/migrate.yml index 847b1d722..630640ab1 100644 --- a/roles/etcd/tasks/migration/migrate.yml +++ b/roles/etcd/tasks/migration/migrate.yml @@ -1,7 +1,7 @@ --- # Should this be run in a serial manner? - set_fact: - l_etcd_service: "{{ 'etcd_container' if openshift_is_containerized else 'etcd' }}" + l_etcd_service: "{{ 'etcd_container' if (openshift_is_containerized | bool) else 'etcd' }}" - name: Migrate etcd data command: > |