ansible-role-workflows-common/tasks/main.yaml

17 lines
391 B
YAML
Raw Normal View History

2020-11-18 17:46:04 +01:00
---
- name: Generate taskdefs
template:
src: "templates/taskdefs.json.j2"
2020-11-19 11:16:36 +01:00
#dest: "{{ target_path }}/taskdefs.json"
dest: "taskdefs.json"
2020-11-18 17:46:04 +01:00
- name: Upload task definitions
uri:
url: "{{ conductor_taskdef_endpoint }}"
method: POST
2020-11-19 11:16:36 +01:00
#src: "{{ target_path }}/taskdefs.json"
src: "taskdefs.json"
2020-11-18 17:46:04 +01:00
body_format: json
status_code: 204
follow_redirects: yes