2023-06-26 18:27:30 +08:00
|
|
|
apiVersion: apps/v1
|
|
|
|
kind: Deployment
|
|
|
|
metadata:
|
|
|
|
annotations:
|
2024-12-16 18:40:10 +08:00
|
|
|
kompose.version: 1.35.0 (9532ceef3)
|
2023-06-26 18:27:30 +08:00
|
|
|
labels:
|
|
|
|
io.kompose.service: nextcloud-aio-notify-push
|
|
|
|
name: nextcloud-aio-notify-push
|
2024-02-29 02:30:56 +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
|
2024-03-08 17:34:27 +08:00
|
|
|
strategy:
|
|
|
|
type: Recreate
|
2023-06-26 18:27:30 +08:00
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
annotations:
|
2024-12-16 18:40:10 +08:00
|
|
|
kompose.version: 1.35.0 (9532ceef3)
|
2023-06-26 18:27:30 +08:00
|
|
|
labels:
|
|
|
|
io.kompose.service: nextcloud-aio-notify-push
|
|
|
|
spec:
|
2024-11-15 23:52:55 +08:00
|
|
|
securityContext:
|
|
|
|
# The items below only work in pod context
|
|
|
|
fsGroup: 33
|
|
|
|
fsGroupChangePolicy: "OnRootMismatch"
|
|
|
|
# The items below work in both contexts
|
|
|
|
runAsUser: 33
|
|
|
|
runAsGroup: 33
|
|
|
|
runAsNonRoot: true
|
2024-11-26 18:14:52 +08:00
|
|
|
{{- if eq (.Values.RPSS_ENABLED | default "no") "yes" }}
|
2024-11-15 23:52:55 +08:00
|
|
|
seccompProfile:
|
|
|
|
type: RuntimeDefault
|
|
|
|
{{- end }}
|
2023-06-26 18:27:30 +08:00
|
|
|
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 }}"
|
2024-06-06 16:00:47 +08:00
|
|
|
- name: POSTGRES_PORT
|
|
|
|
value: "5432"
|
2023-06-26 18:27:30 +08:00
|
|
|
- name: POSTGRES_USER
|
|
|
|
value: nextcloud
|
|
|
|
- name: REDIS_HOST
|
|
|
|
value: nextcloud-aio-redis
|
|
|
|
- name: REDIS_HOST_PASSWORD
|
|
|
|
value: "{{ .Values.REDIS_PASSWORD }}"
|
2024-12-16 18:40:10 +08:00
|
|
|
image: nextcloud/aio-notify-push:20241216_102930
|
|
|
|
readinessProbe:
|
|
|
|
exec:
|
|
|
|
command:
|
|
|
|
- /healthcheck.sh
|
|
|
|
failureThreshold: 3
|
|
|
|
periodSeconds: 30
|
|
|
|
timeoutSeconds: 30
|
|
|
|
livenessProbe:
|
|
|
|
exec:
|
|
|
|
command:
|
|
|
|
- /healthcheck.sh
|
|
|
|
failureThreshold: 3
|
|
|
|
periodSeconds: 30
|
|
|
|
timeoutSeconds: 30
|
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
|
2024-03-08 17:34:27 +08:00
|
|
|
securityContext:
|
2024-11-15 23:52:55 +08:00
|
|
|
# The items below only work in container context
|
2024-11-05 23:05:22 +08:00
|
|
|
allowPrivilegeEscalation: false
|
2024-03-08 17:34:27 +08:00
|
|
|
capabilities:
|
2024-11-26 18:14:52 +08:00
|
|
|
{{- if eq (.Values.RPSS_ENABLED | default "no") "yes" }}
|
2024-11-15 23:52:55 +08:00
|
|
|
drop: ["ALL"]
|
|
|
|
{{- else }}
|
|
|
|
drop: ["NET_RAW"]
|
|
|
|
{{- end }}
|
|
|
|
add: ["NET_BIND_SERVICE"]
|
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
|