-
Notifications
You must be signed in to change notification settings - Fork 5
/
owncloud-ephemeral.yml
341 lines (337 loc) · 9.67 KB
/
owncloud-ephemeral.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
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
---
kind: Template
apiVersion: template.openshift.io/v1
metadata:
name: owncloud-ephemeral
annotations:
openshift.io/display-name: ownCloud (Ephemeral)
description: >-
A deployment for ownCloud with MariaDB and Redis, without persistent
storage.
iconClass: icon-php
tags: instant-app,php,owncloud,mariadb,redis
openshift.io/provider-display-name: "ownCloud GmbH"
openshift.io/documentation-url: "https://github.com/owncloud-docker/openshift"
openshift.io/support-url: "https://github.com/owncloud-docker/openshift"
message: >-
An ownCloud service without persistent storage has been created in your
project.
objects:
- kind: ServiceAccount
apiVersion: v1
metadata:
name: owncloud
- kind: Route
apiVersion: v1
metadata:
name: owncloud
spec:
host: "${OWNCLOUD_PUBLIC_DOMAIN}"
to:
kind: Service
name: owncloud
tls:
termination: edge
insecureEdgeTerminationPolicy: Redirect
port:
targetPort: http
- kind: Service
apiVersion: v1
metadata:
name: owncloud
spec:
ports:
- name: http
protocol: TCP
port: 8080
targetPort: http
selector:
app: owncloud
- kind: DeploymentConfig
apiVersion: v1
metadata:
name: owncloud
labels:
app: owncloud
spec:
strategy:
type: Recreate
triggers:
- type: ConfigChange
replicas: 1
selector:
app: owncloud
template:
metadata:
name: owncloud
labels:
app: owncloud
spec:
hostname: owncloud
serviceAccount: owncloud
containers:
- name: owncloud
image: "${OWNCLOUD_IMAGE_NAME}"
imagePullPolicy: Always
ports:
- name: http
protocol: TCP
containerPort: 8080
readinessProbe:
timeoutSeconds: 3
initialDelaySeconds: 60
failureThreshold: 60
exec:
command:
- "/usr/bin/healthcheck"
livenessProbe:
timeoutSeconds: 3
initialDelaySeconds: 60
failureThreshold: 30
exec:
command:
- "/usr/bin/healthcheck"
env:
- name: OWNCLOUD_DOMAIN
value: "${OWNCLOUD_PUBLIC_DOMAIN}"
- name: OWNCLOUD_PROTOCOL
value: https
- name: OWNCLOUD_CROND_ENABLED
value: "false"
- name: OWNCLOUD_BACKGROUND_MODE
value: webcron
- name: OWNCLOUD_DB_TYPE
value: mysql
- name: OWNCLOUD_DB_HOST
value: mariadb
- name: OWNCLOUD_DB_NAME
value: owncloud
- name: OWNCLOUD_DB_USERNAME
value: owncloud
- name: OWNCLOUD_DB_PASSWORD
value: owncloud
- name: OWNCLOUD_REDIS_ENABLED
value: "true"
- name: OWNCLOUD_REDIS_HOST
value: redis
- name: OWNCLOUD_REDIS_PORT
value: "6379"
- name: OWNCLOUD_VOLUME_ROOT
value: "/var/lib/owncloud"
- name: OWNCLOUD_LOG_FILE
value: "/dev/stdout"
- name: OWNCLOUD_ADMIN_USERNAME
value: "${OWNCLOUD_ADMIN_USERNAME}"
- name: OWNCLOUD_ADMIN_PASSWORD
value: "${OWNCLOUD_ADMIN_PASSWORD}"
- name: OWNCLOUD_SESSION_SAVE_HANDLER
value: redis
- name: OWNCLOUD_SESSION_SAVE_PATH
value: tcp://redis:6379?database=1
- name: OWNCLOUD_SKIP_CHOWN
value: "true"
volumeMounts:
- name: data
mountPath: "/var/lib/owncloud"
securityContext:
allowPrivilegeEscalation: false
volumes:
- name: data
emptyDir: {}
- kind: Service
apiVersion: v1
metadata:
name: mariadb
spec:
ports:
- name: mariadb
protocol: TCP
port: 3306
targetPort: mariadb
selector:
app: mariadb
- kind: DeploymentConfig
apiVersion: v1
metadata:
name: mariadb
spec:
strategy:
type: Recreate
triggers:
- type: ConfigChange
replicas: 1
selector:
app: mariadb
template:
metadata:
name: mariadb
labels:
app: mariadb
spec:
hostname: mariadb
containers:
- name: mariadb
image: docker.io/mariadb:10.5
imagePullPolicy: Always
ports:
- name: mariadb
protocol: TCP
containerPort: 3306
env:
- name: MYSQL_ROOT_PASSWORD
value: owncloud
- name: MYSQL_USER
value: owncloud
- name: MYSQL_PASSWORD
value: owncloud
- name: MYSQL_DATABASE
value: owncloud
volumeMounts:
- name: data
mountPath: "/var/lib/mysql"
securityContext:
allowPrivilegeEscalation: false
- name: healthcheck
image: docker.io/healthcheck/mysql:latest
imagePullPolicy: Always
command:
- "/bin/bash"
- "-c"
args:
- "trap : TERM INT; sleep infinity & wait"
env:
- name: MYSQL_USER
value: root
- name: MYSQL_PASSWORD
value: owncloud
readinessProbe:
timeoutSeconds: 3
initialDelaySeconds: 60
failureThreshold: 30
exec:
command:
- "/usr/local/bin/docker-healthcheck"
livenessProbe:
timeoutSeconds: 3
initialDelaySeconds: 60
failureThreshold: 30
exec:
command:
- "/usr/local/bin/docker-healthcheck"
volumes:
- name: data
emptyDir: {}
- kind: Service
apiVersion: v1
metadata:
name: redis
spec:
ports:
- name: redis
protocol: TCP
port: 6379
targetPort: redis
selector:
app: redis
- kind: DeploymentConfig
apiVersion: v1
metadata:
name: redis
labels:
app: redis
spec:
strategy:
type: Recreate
triggers:
- type: ConfigChange
replicas: 1
selector:
app: redis
template:
metadata:
name: redis
labels:
app: redis
spec:
hostname: redis
containers:
- name: redis
image: docker.io/redis:5.0
imagePullPolicy: Always
ports:
- name: redis
protocol: TCP
containerPort: 6379
volumeMounts:
- name: data
mountPath: "/data"
securityContext:
allowPrivilegeEscalation: false
- name: healthcheck
image: docker.io/healthcheck/redis:latest
imagePullPolicy: Always
command:
- "/bin/bash"
- "-c"
args:
- "trap : TERM INT; sleep infinity & wait"
readinessProbe:
timeoutSeconds: 3
initialDelaySeconds: 60
failureThreshold: 30
exec:
command:
- "/usr/local/bin/docker-healthcheck"
livenessProbe:
timeoutSeconds: 3
initialDelaySeconds: 60
failureThreshold: 30
exec:
command:
- "/usr/local/bin/docker-healthcheck"
volumes:
- name: data
emptyDir: {}
- kind: CronJob
apiVersion: batch/v1beta1
metadata:
name: webcron
spec:
schedule: "*/15 * * * *"
successfulJobsHistoryLimit: 0
failedJobsHistoryLimit: 5
jobTemplate:
spec:
template:
spec:
restartPolicy: OnFailure
containers:
- name: webcron
image: "${OWNCLOUD_IMAGE_NAME}"
args:
- curl
- http://owncloud:8080/cron.php
parameters:
- name: OWNCLOUD_PUBLIC_DOMAIN
displayName: ownCloud Domain
description: The domain where you want to reach ownCloud after the deployment.
value: ""
required: true
- name: OWNCLOUD_ADMIN_USERNAME
displayName: ownCloud Admin Username
description: >-
The username for the initial admin user, can be changed later within
ownCloud.
value: admin
- name: OWNCLOUD_ADMIN_PASSWORD
displayName: ownCloud Admin Password
description: >-
The password for the initial admin user, can be changed later within
ownCloud.
value: admin
- name: OWNCLOUD_IMAGE_NAME
displayName: ownCloud Docker Image
description: The name of the ownCloud Docker image used within the OpenShift deployment.
value: docker.io/owncloud/server:latest
labels:
template: owncloud-ephemeral-template