-
Notifications
You must be signed in to change notification settings - Fork 0
/
pod.yaml
97 lines (94 loc) · 1.95 KB
/
pod.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
apiVersion: v1
kind: Pod
metadata:
labels:
app: nextcloud
name: nextcloud
spec:
containers:
- name: nc
args:
- apache2-foreground
image: docker.io/library/nextcloud:stable
envFrom:
- configMapRef:
name: nextcloud
env:
- name: OVERWRITEPROTOCOL
value: "https"
- name: MYSQL_HOST
value: 127.0.0.1:3306
- name: REDIS_HOST
value: 127.0.0.1
- name: NEXTCLOUD_UPDATE
value: 1
- name: PHP_UPLOAD_LIMIT
value: "10G"
ports:
- containerPort: 80
hostPort: 8010
securityContext:
capabilities:
drop:
- CAP_MKNOD
- CAP_NET_RAW
- CAP_AUDIT_WRITE
volumeMounts:
- name: config
mountPath: /var/www/html/config
- name: data
mountPath: /var/www/html/data
- name: themes
mountPath: /var/www/html/themes
- name: db
image: docker.io/library/mariadb:10.5
args:
- mariadbd
- --transaction-isolation=READ-COMMITTED
- --log-bin=binlog
- --binlog-format=ROW
securityContext:
capabilities:
drop:
- CAP_MKNOD
- CAP_NET_RAW
- CAP_AUDIT_WRITE
envFrom:
- configMapRef:
name: db
volumeMounts:
- name: db
mountPath: /var/lib/mysql
- name: redis
image: docker.io/library/redis:latest
args:
- redis-server
securityContext:
capabilities:
drop:
- CAP_MKNOD
- CAP_NET_RAW
- CAP_AUDIT_WRITE
volumeMounts:
- name: redis
mountPath: /data
volumes:
- name: config
hostPath:
path: /media/nextcloud/config
type: Directory
- name: data
hostPath:
path: /media/nextcloud/data
type: Directory
- name: themes
hostPath:
path: /media/nextcloud/themes
type: Directory
- name: db
hostPath:
path: /media/nextcloud/db
type: Directory
- name: redis
persistentVolumeClaim:
claimName: nextcloud-redis