mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-16 18:05:27 -07:00
New module tower_workflow_template. (#37520)
* Add new module *tower_workflow_template* Manage Tower workflows and their schemas.
This commit is contained in:
parent
7cded31ec9
commit
aaa157f140
3 changed files with 273 additions and 0 deletions
2
test/integration/targets/tower_workflow_template/aliases
Normal file
2
test/integration/targets/tower_workflow_template/aliases
Normal file
|
@ -0,0 +1,2 @@
|
|||
cloud/tower
|
||||
shippable/tower/group1
|
|
@ -0,0 +1,80 @@
|
|||
---
|
||||
- name: Create an SCM Credential
|
||||
tower_credential:
|
||||
name: SCM Credential for JT
|
||||
organization: Default
|
||||
kind: scm
|
||||
|
||||
- name: Create a Demo Project
|
||||
tower_project:
|
||||
name: Job Template Test Project
|
||||
organization: Default
|
||||
state: present
|
||||
scm_type: git
|
||||
scm_url: https://github.com/ansible/ansible-tower-samples.git
|
||||
scm_credential: SCM Credential for JT
|
||||
register: result
|
||||
|
||||
- name: Update the project (to clone the git repo)
|
||||
uri:
|
||||
url: "https://{{ lookup('env', 'TOWER_HOST') }}/api/v2/projects/{{ result.id }}/update/"
|
||||
method: POST
|
||||
user: "{{ lookup('env', 'TOWER_USERNAME') }}"
|
||||
password: "{{ lookup('env', 'TOWER_PASSWORD') }}"
|
||||
validate_certs: false
|
||||
status_code: 202
|
||||
force_basic_auth: true
|
||||
|
||||
- name: Wait for the project to be status=successful
|
||||
uri:
|
||||
url: "https://{{ lookup('env', 'TOWER_HOST') }}/api/v2/projects/{{ result.id }}/"
|
||||
method: GET
|
||||
user: "{{ lookup('env', 'TOWER_USERNAME') }}"
|
||||
password: "{{ lookup('env', 'TOWER_PASSWORD') }}"
|
||||
validate_certs: false
|
||||
force_basic_auth: true
|
||||
return_content: true
|
||||
register: result
|
||||
until: result.json.status == "successful"
|
||||
retries: 60
|
||||
delay: 1
|
||||
|
||||
- name: Create a Job Template
|
||||
tower_job_template:
|
||||
name: my-job-1
|
||||
project: Job Template Test Project
|
||||
inventory: Demo Inventory
|
||||
playbook: hello_world.yml
|
||||
credential: Demo Credential
|
||||
job_type: run
|
||||
state: present
|
||||
|
||||
- name: Create a second Job Template
|
||||
tower_job_template:
|
||||
name: my-job-2
|
||||
project: Job Template Test Project
|
||||
inventory: Demo Inventory
|
||||
playbook: hello_world.yml
|
||||
credential: Demo Credential
|
||||
job_type: run
|
||||
state: present
|
||||
|
||||
- name: Create a workflow job template
|
||||
tower_workflow_template:
|
||||
name: my-workflow
|
||||
schema: '[{"success": [{"job_template": "my-job-1"}], "job_template": "my-job-2"}]'
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result is changed"
|
||||
|
||||
- name: Delete a workflow job template
|
||||
tower_workflow_template:
|
||||
name: my-workflow
|
||||
state: absent
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result is changed"
|
Loading…
Add table
Add a link
Reference in a new issue