setup_container.yml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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: preflight/playbooks/tasks/enable_repo.yml
  45. vars: { repo_name: "ose-3.2" }
  46. - include: ../../../playbooks/byo/openshift-cluster/initialize_groups.yml
  47. - include: ../../../playbooks/common/openshift-cluster/std_include.yml
  48. - hosts: all
  49. tasks:
  50. # put it back like it was for the tests
  51. - include: preflight/playbooks/tasks/enable_repo.yml
  52. vars: { repo_name: "ose-3.2", enabled: False }