Skip to content
Snippets Groups Projects
Commit e720e10f authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Fix the Prechecks failed while checking docker version"

parents bf2d5927 d1ddeddb
No related branches found
No related tags found
No related merge requests found
--- ---
- name: Checking Docker version - name: Checking Docker version
command: docker version command: docker --version
register: result register: result
changed_when: false changed_when: false
when: inventory_hostname in groups['baremetal'] when: inventory_hostname in groups['baremetal']
failed_when: result | failed failed_when: result | failed
or (result.stdout | from_yaml).Server.Version | regex_replace('(\\d+\\.\\d+\\.\\d+).*', '\\1') | version_compare(docker_version_min, '<') or result.stdout | regex_replace('.*(\\d+\\.\\d+\\.\\d+).*', '\\1') | version_compare(docker_version_min, '<')
# NOTE(mgoddard): If passwords.yml is encrypted using ansible-vault, this check # NOTE(mgoddard): If passwords.yml is encrypted using ansible-vault, this check
# will pass, but only because nothing in the vault file has the format of a # will pass, but only because nothing in the vault file has the format of a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment