mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 03:24:48 +08:00
8ac090a091
Signed-off-by: GitHub <noreply@github.com>
65 lines
2.1 KiB
YAML
Executable file
65 lines
2.1 KiB
YAML
Executable file
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace {{ .Values.NAMESPACE }}
|
|
kompose.version: 1.31.2 (a92241f79)
|
|
labels:
|
|
io.kompose.service: nextcloud-aio-notify-push
|
|
name: nextcloud-aio-notify-push
|
|
namespace: {{ .Values.NAMESPACE }}
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
io.kompose.service: nextcloud-aio-notify-push
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -c -f latest.yml --namespace {{ .Values.NAMESPACE }}
|
|
kompose.version: 1.31.2 (a92241f79)
|
|
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 }}"
|
|
image: nextcloud/aio-notify-push:20231130_081302-latest
|
|
name: nextcloud-aio-notify-push
|
|
ports:
|
|
- containerPort: 7867
|
|
protocol: TCP
|
|
volumeMounts:
|
|
- mountPath: /nextcloud
|
|
name: nextcloud-aio-nextcloud
|
|
readOnly: true
|
|
volumes:
|
|
- name: nextcloud-aio-nextcloud
|
|
persistentVolumeClaim:
|
|
claimName: nextcloud-aio-nextcloud
|