TrueChartsClone/charts/stable/nextcloud/values.yaml

108 lines
2.0 KiB
YAML
Raw Normal View History

image:
repository: tccr.io/truecharts/nextcloud
pullPolicy: IfNotPresent
tag: v24.0.2@sha256:63d35a53582c992e684f045df2d08b5aba3e7588da52353b23dbdc28e1ef2f59
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
fsGroup: 33
service:
main:
ports:
main:
port: 10020
targetPort: 80
hpb:
enabled: true
ports:
hpb:
enabled: true
port: 7867
targetPort: 7867
secretEnv:
NEXTCLOUD_ADMIN_USER: "admin"
NEXTCLOUD_ADMIN_PASSWORD: "adminpass"
env:
TRUSTED_PROXIES: "172.16.0.0/16"
POSTGRES_DB: "{{ .Values.postgresql.postgresqlDatabase }}"
POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}"
POSTGRES_PASSWORD:
secretKeyRef:
name: dbcreds
key: postgresql-password
POSTGRES_HOST:
secretKeyRef:
name: dbcreds
key: plainporthost
2021-07-02 21:59:17 +00:00
REDIS_HOST:
secretKeyRef:
name: rediscreds
key: plainhost
2021-07-02 22:03:03 +00:00
REDIS_HOST_PASSWORD:
2021-07-02 21:59:17 +00:00
secretKeyRef:
name: rediscreds
key: redis-password
envFrom:
- configMapRef:
name: nextcloudconfig
persistence:
data:
enabled: true
mountPath: "/var/www/html"
probes:
2021-07-02 21:59:17 +00:00
liveness:
custom: true
spec:
httpGet:
path: /status.php
port: 80
httpHeaders:
- name: Host
value: "test.fakedomain.dns"
2021-07-02 21:59:17 +00:00
readiness:
custom: true
spec:
httpGet:
path: /status.php
port: 80
httpHeaders:
- name: Host
value: "test.fakedomain.dns"
2021-07-02 21:59:17 +00:00
startup:
custom: true
spec:
httpGet:
path: /status.php
port: 80
httpHeaders:
- name: Host
value: "test.fakedomain.dns"
cronjob:
schedule: "*/5 * * * *"
annotations: {}
failedJobsHistoryLimit: 5
successfulJobsHistoryLimit: 2
postgresql:
enabled: true
existingSecret: "dbcreds"
postgresqlUsername: nextcloud
postgresqlDatabase: nextcloud
redis:
enabled: true
existingSecret: "rediscreds"