# This installs docker and runs a buildset registry - hosts: all roles: - build-docker-image - hosts: all vars: workspace: /tmp/registry-test local: false tasks: - name: Install packages package: name: - docker-compose - openssl state: present become: true - name: Run main tasks include_tasks: main.yaml # If buildset_registry is defined, that means a parent job is running it; # only if it is not defined does it mean that we are running it. If we # are running it, pause the job so that child jobs will automatically # use it. - hosts: localhost tasks: - name: Pause the job when: buildset_registry is not defined zuul_return: data: zuul: pause: true