Matrix Docker Ansible eploy
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
-
- - import_tasks: "{{ role_path }}/tasks/start.yml"
- when: run_start|bool
- tags:
- - start
-
- - import_tasks: "{{ role_path }}/tasks/stop.yml"
- when: run_stop|bool
- tags:
- - stop
-
- - import_tasks: "{{ role_path }}/tasks/dump_runtime_results.yml"
- tags:
- - always
-
- - import_tasks: "{{ role_path }}/tasks/awx_post.yml"
- when: run_setup|bool and matrix_awx_enabled|bool
- tags:
- - always
-
- - import_tasks: "{{ role_path }}/tasks/run_docker_prune.yml"
- tags:
- - run-docker-prune
-
|