-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenshift-template.yaml
253 lines (237 loc) · 6.44 KB
/
openshift-template.yaml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
---
kind: "Template"
apiVersion: "v1"
metadata:
name: "openshift-tv"
annotations:
openshift.io/display-name: "OpenShift.tv"
description: "Provides website redirects for openshift.tv"
iconClass: "icon-shadowman"
template.openshift.io/provider-display-name: "Red Hat, Inc."
message: "The following service(s) have been created in your project: ${NAME}."
labels:
template: "openshift-tv"
objects:
- kind: "Service"
apiVersion: "v1"
metadata:
annotations:
kubernetes.io/tls-acme: "true"
name: "${NAME}"
annotations:
description: "Exposes and load balances the frontend application pods"
labels:
app: "${NAME}"
spec:
ports:
- name: "8080-tcp"
port: 8080
protocol: "TCP"
targetPort: 8080
selector:
name: "${NAME}"
- kind: "Route"
apiVersion: "v1"
metadata:
annotations:
kubernetes.io/tls-acme: "true"
name: "openshift-tv"
labels:
app: "${NAME}"
spec:
host: "openshift.tv"
to:
kind: "Service"
name: "${NAME}"
weight: 1
port:
targetPort: "8080-tcp"
tls:
insecureEdgeTerminationPolicy: Allow
- kind: "Route"
apiVersion: "v1"
metadata:
annotations:
kubernetes.io/tls-acme: "true"
name: "www-openshift-tv"
labels:
app: "${NAME}"
spec:
host: "www.openshift.tv"
to:
kind: "Service"
name: "${NAME}"
weight: 1
port:
targetPort: "8080-tcp"
tls:
insecureEdgeTerminationPolicy: Allow
- kind: "ImageStream"
apiVersion: "v1"
metadata:
name: "${NAME}"
annotations:
description: "Keeps track of changes in the ${NAME} application image"
labels:
app: "${NAME}"
- kind: "ImageStream"
apiVersion: "v1"
metadata:
name: "httpd-24-rhel7"
annotations:
description: "Upstream httpd 2.4 s2i image"
labels:
app: "${NAME}"
spec:
lookupPolicy:
local: false
tags:
- annotations: null
from:
kind: "DockerImage"
name: "registry.access.redhat.com/rhscl/httpd-24-rhel7"
generation: 0
importPolicy:
scheduled: true
name: "latest"
referencePolicy:
type: "Source"
- kind: "BuildConfig"
apiVersion: "v1"
metadata:
name: "${NAME}"
annotations:
description: "Defines how to perform the build for ${NAME} before deployment"
labels:
app: "${NAME}"
spec:
nodeSelector:
source:
type: "Git"
git:
uri: "${SOURCE_REPOSITORY_URL}"
ref: "${SOURCE_REPOSITORY_REF}"
contextDir: "${CONTEXT_DIR}"
strategy:
type: "Source"
sourceStrategy:
from:
kind: "ImageStreamTag"
name: "httpd-24-rhel7:latest"
output:
to:
kind: "ImageStreamTag"
name: "${NAME}:latest"
triggers:
- type: "ImageChange"
- type: "ConfigChange"
- type: "GitHub"
github:
secret: "${GITHUB_WEBHOOK_SECRET}"
- kind: "DeploymentConfig"
apiVersion: "v1"
metadata:
name: "${NAME}"
annotations:
description: "Defines how to deploy the httpd deployment"
labels:
app: "${NAME}"
spec:
strategy:
activeDeadlineSeconds: 21600
resources: {}
rollingParams:
intervalSeconds: 1
maxSurge: 25%
maxUnavailable: 25%
timeoutSeconds: 600
updatePeriodSeconds: 1
type: "Rolling"
triggers:
- type: "ImageChange"
imageChangeParams:
automatic: true
containerNames:
- "${NAME}"
from:
kind: "ImageStreamTag"
name: "${NAME}:latest"
- type: "ConfigChange"
replicas: 1
test: false
selector:
name: "${NAME}"
template:
metadata:
name: "${NAME}"
labels:
name: "${NAME}"
app: "${NAME}"
spec:
containers:
- name: "${NAME}"
ports:
- containerPort: 8080
resources:
requests:
cpu: "${CPU_REQUEST}"
memory: "${MEMORY_REQUEST}"
limits:
cpu: "${CPU_LIMIT}"
memory: "${MEMORY_LIMIT}"
- kind: "HorizontalPodAutoscaler"
apiVersion: "autoscaling/v1"
metadata:
name: "${NAME}"
labels:
app: "${NAME}"
spec:
scaleTargetRef:
kind: DeploymentConfig
name: "${NAME}"
apiVersion: "v1"
minReplicas: 2
maxReplicas: 5
targetCPUUtilizationPercentage: 75
parameters:
- name: "NAME"
displayName: "Application name"
description: "The name assigned to all of the application components defined in this template."
required: true
value: "openshift-tv"
- name: "SOURCE_REPOSITORY_URL"
displayName: "Git Repository URL"
description: "The URL of the repository with your application source code."
required: true
value: "https://github.com/openshift-cs/openshift.tv.git"
- name: "SOURCE_REPOSITORY_REF"
displayName: "Git Reference"
description: "Set this to a branch name, tag or other ref of your repository if you are not using the default branch."
- name: "CONTEXT_DIR"
displayName: "Context Directory"
description: "Set this to the relative path to your project if it is not in the root of your repository."
- name: "CPU_REQUEST"
displayName: "CPU Request"
description: "Requested amount of CPU the httpd container will use."
required: true
value: "50m"
- name: "CPU_LIMIT"
displayName: "CPU Limit"
description: "Maximum amount of CPU the httpd container can use."
required: true
value: "500m"
- name: "MEMORY_REQUEST"
displayName: "Memory Request"
description: "Requested amount of memory the httpd container will use."
required: true
value: "100Mi"
- name: "MEMORY_LIMIT"
displayName: "Memory Limit"
description: "Maximum amount of memory the httpd container can use."
required: true
value: "512Mi"
- name: "GITHUB_WEBHOOK_SECRET"
displayName: "GitHub Webhook Secret"
description: "A secret string used to configure the GitHub webhook."
generate: "expression"
from: "[a-zA-Z0-9]{40}"