setup_container.yml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ---
  2. # Include this play once for each container you want to create and use as a test host.
  3. #
  4. # Optional parameters on the include are as follows:
  5. # * scenario = unique name for the container to be started
  6. # * image = name of the image to start in the container
  7. # * command = command to run in the container
  8. # * l_groups = host groups that the container should be added to
  9. # * l_host_vars = any variables that should be added to the host
  10. - name: Start container for specified test host
  11. gather_facts: no
  12. hosts: localhost
  13. connection: local
  14. tasks:
  15. - set_fact:
  16. # This is a little weird but if we use a var instead of a fact,
  17. # a different random value is generated for each task. See:
  18. # https://opensolitude.com/2015/05/27/ansible-lookups-variables-vs-facts.html
  19. container_name: openshift_ansible_test_{{ scenario | default(100000000000000 | random) }}
  20. - name: start container
  21. docker_container:
  22. name: "{{ container_name }}"
  23. image: "{{ lookup('env', 'IMAGE_PREFIX') | default('openshift-ansible-integration-', true) }}{{ image | default('test-target-base') }}"
  24. command: "{{ command | default('sleep 1800') }}"
  25. recreate: yes
  26. # NOTE: When/if we need to run containers that are docker hosts as well:
  27. # volumes: [ "/var/run/docker.sock:/var/run/docker.sock:z" ]
  28. - name: add container as host in inventory
  29. add_host:
  30. ansible_connection: docker
  31. name: "{{ container_name }}"
  32. groups: '{{ l_groups | default("masters,nodes,etcd") }}'
  33. # There ought to be a better way to transfer the host vars, but see:
  34. # https://groups.google.com/forum/#!topic/Ansible-project/Jwx8RYhqxPA
  35. - name: set host facts per test parameters
  36. set_fact:
  37. "{{ item.key }}": "{{ item.value }}"
  38. delegate_facts: True
  39. delegate_to: "{{ container_name }}"
  40. with_dict: "{{ l_host_vars | default({}) }}"
  41. - hosts: all
  42. tasks:
  43. # run before openshift_version to prevent it breaking
  44. - include_tasks: preflight/playbooks/tasks/enable_repo.yml
  45. vars: { repo_name: "ose-3.2" }
  46. - import_playbook: ../../../playbooks/init/main.yml
  47. - hosts: all
  48. tasks:
  49. # put it back like it was for the tests
  50. - include_tasks: preflight/playbooks/tasks/enable_repo.yml
  51. vars: { repo_name: "ose-3.2", enabled: False }