diff options
author | Michael Gugino <mgugino@redhat.com> | 2018-02-12 14:00:05 -0500 |
---|---|---|
committer | Michael Gugino <mgugino@redhat.com> | 2018-02-12 14:29:24 -0500 |
commit | deaf085cdb902e5b5404280c84b96511e83b20ac (patch) | |
tree | 3bee70db4fccca1104260228016673c7c3590a8e /roles/container_runtime/defaults | |
parent | f9f61beed982ba841c872b5fc082c6dc05ad27b1 (diff) | |
download | openshift-deaf085cdb902e5b5404280c84b96511e83b20ac.tar.gz openshift-deaf085cdb902e5b5404280c84b96511e83b20ac.tar.bz2 openshift-deaf085cdb902e5b5404280c84b96511e83b20ac.tar.xz openshift-deaf085cdb902e5b5404280c84b96511e83b20ac.zip |
Fix docker_upgrade variable
Currently, docker_upgrade is ignored during
cluster upgrades.
This commit ensures that the variable is respected.
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1543714
Diffstat (limited to 'roles/container_runtime/defaults')
-rw-r--r-- | roles/container_runtime/defaults/main.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/container_runtime/defaults/main.yml b/roles/container_runtime/defaults/main.yml index 01540776f..77cf86b0a 100644 --- a/roles/container_runtime/defaults/main.yml +++ b/roles/container_runtime/defaults/main.yml @@ -87,6 +87,8 @@ openshift_use_crio_only: False l_openshift_image_tag_default: "{{ openshift_release | default('latest') }}" l_openshift_image_tag: "{{ openshift_image_tag | default(l_openshift_image_tag_default) | string}}" +l_required_docker_version: '1.12' + # --------------------- # # systemcontainers_crio # # --------------------- # |