# Default values for Bitwarden. image: repository: docker.io/nextcloud pullPolicy: IfNotPresent tag: 22.2.2@sha256:2394d656bf45d63e2a009390773220aebd8ef862798c4f6940aec55c5d3f6a6d securityContext: readOnlyRootFilesystem: false runAsNonRoot: false podSecurityContext: runAsUser: 0 runAsGroup: 0 fsGroup: 33 service: main: ports: main: port: 80 targetPort: 80 hpb: enabled: true ports: hpb: enabled: true port: 7867 targetPort: 7867 env: NEXTCLOUD_ADMIN_USER: "admin" NEXTCLOUD_ADMIN_PASSWORD: "adminpass" TRUSTED_PROXIES: "172.16.0.0/16" envTpl: POSTGRES_DB: "{{ .Values.postgresql.postgresqlDatabase }}" POSTGRES_USER: "{{ .Values.postgresql.postgresqlUsername }}" envFrom: - configMapRef: name: nextcloudconfig envValueFrom: POSTGRES_PASSWORD: secretKeyRef: name: dbcreds key: postgresql-password POSTGRES_HOST: secretKeyRef: name: dbcreds key: plainporthost REDIS_HOST: secretKeyRef: name: rediscreds key: plainhost REDIS_HOST_PASSWORD: secretKeyRef: name: rediscreds key: redis-password persistence: data: enabled: true mountPath: "/var/www/html" # -- Probe configuration # -- [[ref]](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/) # @default -- See below probes: # -- Liveness probe configuration # @default -- See below liveness: custom: true # -- If a HTTP probe is used (default for HTTP/HTTPS services) this path is used # @default -- "/" spec: httpGet: path: /status.php port: 80 httpHeaders: - name: Host value: "test.fakedomain.dns" initialDelaySeconds: 10 periodSeconds: 10 timeoutSeconds: 2 failureThreshold: 5 # -- Redainess probe configuration # @default -- See below readiness: custom: true # -- If a HTTP probe is used (default for HTTP/HTTPS services) this path is used # @default -- "/" spec: httpGet: path: /status.php port: 80 httpHeaders: - name: Host value: "test.fakedomain.dns" initialDelaySeconds: 10 periodSeconds: 10 timeoutSeconds: 2 failureThreshold: 5 # -- Startup probe configuration # @default -- See below startup: custom: true # -- If a HTTP probe is used (default for HTTP/HTTPS services) this path is used # @default -- "/" spec: httpGet: path: /status.php port: 80 httpHeaders: - name: Host value: "test.fakedomain.dns" initialDelaySeconds: 10 periodSeconds: 10 timeoutSeconds: 2 failureThreshold: 5 ## Cronjob to execute Nextcloud background tasks ## ref: https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/background_jobs_configuration.html#webcron ## cronjob: # Every 5 minutes # Note: Setting this to any any other value than 5 minutes might # cause issues with how nextcloud background jobs are executed schedule: "*/5 * * * *" annotations: {} failedJobsHistoryLimit: 5 successfulJobsHistoryLimit: 2 # Enabled postgres postgresql: enabled: true existingSecret: "dbcreds" postgresqlUsername: nextcloud postgresqlDatabase: nextcloud # Enabled redis # ... for more options see https://github.com/bitnami/charts/tree/master/bitnami/redis redis: enabled: true existingSecret: "rediscreds"