openshift-apps: Add a minimal kerneltest playbook
Add a playbook that just creates the OpenShift project. This slow and steady approach will hopefully be less painful than dumping a bunch of openshift yaml that fails validation and sorting through it all at once. Signed-off-by: Jeremy Cline <jcline@redhat.com>
This commit is contained in:
parent
543eac44ed
commit
4c33431f44
1 changed files with 21 additions and 0 deletions
21
playbooks/openshift-apps/kerneltest.yml
Normal file
21
playbooks/openshift-apps/kerneltest.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
- name: make the app be real
|
||||
hosts: os_masters_stg[0]
|
||||
user: root
|
||||
gather_facts: False
|
||||
|
||||
vars_files:
|
||||
- /srv/web/infra/ansible/vars/global.yml
|
||||
- "/srv/private/ansible/vars.yml"
|
||||
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
||||
|
||||
pre_tasks:
|
||||
- include_vars: dir=/srv/web/infra/ansible/vars/all/ ignore_files=README
|
||||
|
||||
roles:
|
||||
- role: openshift/project
|
||||
app: kerneltest
|
||||
description: kerneltest
|
||||
appowners:
|
||||
- jcline
|
||||
tags:
|
||||
- apply-appowners
|
Loading…
Add table
Add a link
Reference in a new issue