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/openshift_etcd_facts | |
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/openshift_etcd_facts')
-rw-r--r-- | roles/openshift_etcd_facts/vars/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_etcd_facts/vars/main.yml b/roles/openshift_etcd_facts/vars/main.yml index 9e635b34f..d716c9505 100644 --- a/roles/openshift_etcd_facts/vars/main.yml +++ b/roles/openshift_etcd_facts/vars/main.yml @@ -1,5 +1,5 @@ --- -etcd_is_containerized: "{{ openshift_is_containerized }}" +etcd_is_containerized: "{{ openshift_is_containerized | bool }}" etcd_is_atomic: "{{ openshift_is_atomic }}" etcd_hostname: "{{ openshift.common.hostname }}" etcd_ip: "{{ openshift.common.ip }}" |