docker_sanity.yml 1.7 KB

123456789101112131415161718192021222324252627
  1. ---
  2. # Sanity checks to ensure the role will complete and provide helpful error
  3. # messages for common problems.
  4. - name: Error out if Docker pre-installed but too old
  5. fail:
  6. msg: "Docker {{ curr_docker_version.stdout }} is installed, but >= 1.9.1 is required."
  7. when: not curr_docker_version | skipped and curr_docker_version.stdout != '' and curr_docker_version.stdout | version_compare('1.9.1', '<') and not docker_version is defined
  8. - name: Error out if requested Docker is too old
  9. fail:
  10. msg: "Docker {{ docker_version }} requested, but >= 1.9.1 is required."
  11. when: docker_version is defined and docker_version | version_compare('1.9.1', '<')
  12. # If a docker_version was requested, sanity check that we can install or upgrade to it, and
  13. # no downgrade is required.
  14. - name: Fail if Docker version requested but downgrade is required
  15. fail:
  16. msg: "Docker {{ curr_docker_version.stdout }} is installed, but version {{ docker_version }} was requested."
  17. when: not curr_docker_version | skipped and curr_docker_version.stdout != '' and docker_version is defined and curr_docker_version.stdout | version_compare(docker_version, '>')
  18. # This involves an extremely slow migration process, users should instead run the
  19. # Docker 1.10 upgrade playbook to accomplish this.
  20. - name: Error out if attempting to upgrade Docker across the 1.10 boundary
  21. fail:
  22. msg: "Cannot upgrade Docker to >= 1.10, please upgrade or remove Docker manually, or use the Docker upgrade playbook if OpenShift is already installed."
  23. when: not curr_docker_version | skipped and curr_docker_version.stdout != '' and curr_docker_version.stdout | version_compare('1.10', '<') and docker_version is defined and docker_version | version_compare('1.10', '>=')