mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
- 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: 15
|
|
delay: 1
|
|
|
|
- name: Create a Job Template
|
|
tower_job_template:
|
|
name: hello-world
|
|
project: Job Template Test Project
|
|
inventory: Demo Inventory
|
|
playbook: hello_world.yml
|
|
machine_credential: Demo Credential
|
|
job_type: run
|
|
state: present
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result is changed"
|