-
Notifications
You must be signed in to change notification settings - Fork 270
/
seed-hosts.yml
37 lines (36 loc) · 1.11 KB
/
seed-hosts.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
namespace: s2i-gows
openshift_cluster_content:
- object: Environment Setup
content:
- name: Create Projects
template: "https://raw.githubusercontent.com/redhat-cop/openshift-templates/v1.4.17/project-requests/create-project.yml"
action: create
params_from_vars:
NAMESPACE: "{{ namespace }}"
NAMESPACE_DISPLAY_NAME: "{{ namespace }}"
tags:
- project
- object: imagestream
content:
- name: busybox
template: "{{ inventory_dir }}/../.openshift/templates/imagestreams/template.yml"
params_from_vars:
IS_NAME: busybox
namespace: "{{ namespace }}"
- name: golang
template: "{{ inventory_dir }}/../.openshift/templates/imagestreams/template.yml"
params_from_vars:
IS_NAME: golang
IS_TAG: 1.9.2
namespace: "{{ namespace }}"
- object: deployments
content:
- name: s2i-gows
template: "{{ inventory_dir }}/../.openshift/templates/deployments/template.yml"
namespace: "{{ namespace }}"
- object: builds
content:
- name: gows
template: "{{ inventory_dir }}/../.openshift/templates/builds/template.yml"
namespace: "{{ namespace }}"