From 4c33431f44d10ead0a7e891a89b5f7f02acc3892 Mon Sep 17 00:00:00 2001 From: Jeremy Cline Date: Fri, 5 Jul 2019 16:38:25 -0400 Subject: [PATCH] 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 --- playbooks/openshift-apps/kerneltest.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 playbooks/openshift-apps/kerneltest.yml diff --git a/playbooks/openshift-apps/kerneltest.yml b/playbooks/openshift-apps/kerneltest.yml new file mode 100644 index 0000000000..d93ef049f8 --- /dev/null +++ b/playbooks/openshift-apps/kerneltest.yml @@ -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