2023-06-26 18:27:30 +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)
|
2023-06-26 18:27:30 +08:00
|
|
|
labels:
|
|
|
|
io.kompose.service: nextcloud-aio-notify-push
|
|
|
|
name: nextcloud-aio-notify-push
|
2023-08-10 06:46:40 +08:00
|
|
|
namespace: {{ .Values.NAMESPACE }}
|
2023-06-26 18:27:30 +08:00
|
|
|
spec:
|
|
|
|
replicas: 1
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
io.kompose.service: nextcloud-aio-notify-push
|
|
|
|
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)
|
2023-06-26 18:27:30 +08:00
|
|
|
labels:
|
|
|
|
io.kompose.network/nextcloud-aio: "true"
|
|
|
|
io.kompose.service: nextcloud-aio-notify-push
|
|
|
|
spec:
|
|
|
|
initContainers:
|
|
|
|
- name: init-volumes
|
|
|
|
image: alpine
|
|
|
|
command:
|
|
|
|
- chmod
|
|
|
|
- "777"
|
|
|
|
- /nextcloud-aio-nextcloud
|
|
|
|
volumeMounts:
|
|
|
|
- name: nextcloud-aio-nextcloud
|
|
|
|
mountPath: /nextcloud-aio-nextcloud
|
|
|
|
containers:
|
|
|
|
- env:
|
|
|
|
- name: NC_DOMAIN
|
|
|
|
value: "{{ .Values.NC_DOMAIN }}"
|
|
|
|
- name: NEXTCLOUD_HOST
|
|
|
|
value: nextcloud-aio-nextcloud
|
|
|
|
- name: POSTGRES_DB
|
|
|
|
value: nextcloud_database
|
|
|
|
- name: POSTGRES_HOST
|
|
|
|
value: nextcloud-aio-database
|
|
|
|
- name: POSTGRES_PASSWORD
|
|
|
|
value: "{{ .Values.DATABASE_PASSWORD }}"
|
|
|
|
- name: POSTGRES_USER
|
|
|
|
value: nextcloud
|
|
|
|
- name: REDIS_HOST
|
|
|
|
value: nextcloud-aio-redis
|
|
|
|
- name: REDIS_HOST_PASSWORD
|
|
|
|
value: "{{ .Values.REDIS_PASSWORD }}"
|
2024-01-09 20:08:30 +08:00
|
|
|
image: nextcloud/aio-notify-push:20240109_092105-latest
|
2023-06-26 18:27:30 +08:00
|
|
|
name: nextcloud-aio-notify-push
|
|
|
|
ports:
|
|
|
|
- containerPort: 7867
|
2023-07-20 21:54:51 +08:00
|
|
|
protocol: TCP
|
2023-06-26 18:27:30 +08:00
|
|
|
volumeMounts:
|
|
|
|
- mountPath: /nextcloud
|
|
|
|
name: nextcloud-aio-nextcloud
|
|
|
|
readOnly: true
|
|
|
|
volumes:
|
|
|
|
- name: nextcloud-aio-nextcloud
|
|
|
|
persistentVolumeClaim:
|
|
|
|
claimName: nextcloud-aio-nextcloud
|