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:
Jeremy Cline 2019-07-05 16:38:25 -04:00 committed by Jeremy Cline
parent 543eac44ed
commit 4c33431f44

View 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