diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-01-09 16:50:13 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-09 16:50:13 -0800 |
commit | a594dd15a707651e0b9c8dac6d48991488537d4d (patch) | |
tree | 0d0d71b986ba40f6a2c9a16b6d5f7da9a96f92dd /roles/etcd | |
parent | 77730cb7f2e04175c72759f627186a5efffcc3c1 (diff) | |
parent | aae5250ed482423e7789c2dfb335d99475445493 (diff) | |
download | openshift-a594dd15a707651e0b9c8dac6d48991488537d4d.tar.gz openshift-a594dd15a707651e0b9c8dac6d48991488537d4d.tar.bz2 openshift-a594dd15a707651e0b9c8dac6d48991488537d4d.tar.xz openshift-a594dd15a707651e0b9c8dac6d48991488537d4d.zip |
Merge pull request #6658 from mgugino-upstream-stage/containerized_bools
Automatic merge from submit-queue.
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: > |