add file creation job call

This commit is contained in:
Chris Hammer
2022-02-22 10:36:39 -05:00
parent e89fecc514
commit 50b2dc410e
2 changed files with 16 additions and 0 deletions

View File

@ -26,6 +26,10 @@
become: no
vars_files:
- vars/file_creation_test.yml
tasks:
- name : Run file test
block :
@ -52,6 +56,10 @@
- "tower_provision_msg : {{ r_check_file.msg }}"
- include_role:
name: redhat_cop.tower_configuration.job_launch
- name: Execute recovery API callback
uri:
url : "https://git.thezengarden.net/api/v4/projects/119/repository/commits"

View File

@ -0,0 +1,8 @@
---
tower_launch_jobs:
- name: file_creation_test
extra_vars:
tower_provision_host : "{{ tower_provision_host | default('localhost') }}"
...