2022-12-22 20:29:31 +08:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
annotations:
|
2023-08-10 06:46:40 +08:00
|
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace {{ .Values.NAMESPACE }}
|
2023-10-16 16:17:16 +08:00
|
|
|
kompose.version: 1.31.2 (a92241f79)
|
2022-12-22 20:29:31 +08:00
|
|
|
labels:
|
|
|
|
io.kompose.service: nextcloud-aio-database
|
|
|
|
name: nextcloud-aio-database
|
2023-08-10 06:46:40 +08:00
|
|
|
namespace: {{ .Values.NAMESPACE }}
|
2022-12-22 20:29:31 +08:00
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
io.kompose.service: nextcloud-aio-database
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
annotations:
|
2023-08-10 06:46:40 +08:00
|
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace {{ .Values.NAMESPACE }}
|
2023-10-16 16:17:16 +08:00
|
|
|
kompose.version: 1.31.2 (a92241f79)
|
2022-12-22 20:29:31 +08:00
|
|
|
labels:
|
|
|
|
io.kompose.network/nextcloud-aio: "true"
|
|
|
|
io.kompose.service: nextcloud-aio-database
|
|
|
|
spec:
|
2023-02-03 00:37:19 +08:00
|
|
|
initContainers:
|
2023-05-11 17:48:01 +08:00
|
|
|
- name: init-subpath
|
|
|
|
image: alpine
|
|
|
|
command:
|
|
|
|
- mkdir
|
|
|
|
- "-p"
|
|
|
|
- /nextcloud-aio-database/data
|
|
|
|
- /nextcloud-aio-database
|
|
|
|
- /nextcloud-aio-database-dump
|
|
|
|
volumeMounts:
|
|
|
|
- name: nextcloud-aio-database-dump
|
|
|
|
mountPath: /nextcloud-aio-database-dump
|
|
|
|
- name: nextcloud-aio-database
|
|
|
|
mountPath: /nextcloud-aio-database
|
2023-02-01 23:00:52 +08:00
|
|
|
- name: init-volumes
|
|
|
|
image: alpine
|
|
|
|
command:
|
2023-02-02 22:44:37 +08:00
|
|
|
- chown
|
|
|
|
- 999:999
|
2023-05-11 17:48:01 +08:00
|
|
|
- "-R"
|
2023-02-02 22:44:37 +08:00
|
|
|
- /nextcloud-aio-database
|
|
|
|
- /nextcloud-aio-database-dump
|
2023-02-01 23:00:52 +08:00
|
|
|
volumeMounts:
|
|
|
|
- name: nextcloud-aio-database-dump
|
|
|
|
mountPath: /nextcloud-aio-database-dump
|
|
|
|
- name: nextcloud-aio-database
|
|
|
|
mountPath: /nextcloud-aio-database
|
2022-12-22 20:29:31 +08:00
|
|
|
containers:
|
|
|
|
- env:
|
|
|
|
- name: PGTZ
|
|
|
|
value: "{{ .Values.TIMEZONE }}"
|
|
|
|
- name: POSTGRES_DB
|
|
|
|
value: nextcloud_database
|
|
|
|
- name: POSTGRES_PASSWORD
|
|
|
|
value: "{{ .Values.DATABASE_PASSWORD }}"
|
|
|
|
- name: POSTGRES_USER
|
|
|
|
value: nextcloud
|
|
|
|
- name: TZ
|
|
|
|
value: "{{ .Values.TIMEZONE }}"
|
2023-11-17 04:36:08 +08:00
|
|
|
image: nextcloud/aio-postgresql:beta
|
2022-12-22 20:29:31 +08:00
|
|
|
name: nextcloud-aio-database
|
2023-02-02 22:44:37 +08:00
|
|
|
ports:
|
|
|
|
- containerPort: 5432
|
2023-07-20 21:54:51 +08:00
|
|
|
protocol: TCP
|
2022-12-22 20:29:31 +08:00
|
|
|
volumeMounts:
|
|
|
|
- mountPath: /var/lib/postgresql/data
|
2023-05-11 17:48:01 +08:00
|
|
|
subPath: data
|
2022-12-22 20:29:31 +08:00
|
|
|
name: nextcloud-aio-database
|
|
|
|
- mountPath: /mnt/data
|
|
|
|
name: nextcloud-aio-database-dump
|
|
|
|
terminationGracePeriodSeconds: 1800
|
|
|
|
volumes:
|
|
|
|
- name: nextcloud-aio-database
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: nextcloud-aio-database
|
|
|
|
- name: nextcloud-aio-database-dump
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: nextcloud-aio-database-dump
|