mirror of
https://github.com/truenas/charts.git
synced 2026-05-04 15:21:07 +08:00
47 lines
879 B
YAML
47 lines
879 B
YAML
## Official nextcloud image version
|
|
## ref: https://hub.docker.com/r/library/nextcloud/tags/
|
|
##
|
|
image:
|
|
repository: nextcloud
|
|
tag: 21.0.2
|
|
pullPolicy: IfNotPresent
|
|
|
|
nextcloud:
|
|
host: nextcloud.kube.home
|
|
username: admin
|
|
password: changeme
|
|
datadir: /var/www/html/data
|
|
|
|
updateStrategy: "Recreate"
|
|
|
|
postgresql:
|
|
backupVolume:
|
|
mountPath: "/postgres_backups"
|
|
datasetName: "ix-postgres_backups"
|
|
dataVolume:
|
|
mountPath: "/var/lib/postgresql/data"
|
|
datasetName: "ix-postgres_data"
|
|
|
|
service:
|
|
nodePort: 31000
|
|
|
|
emptyDirVolumes: true
|
|
ixChartContext: {}
|
|
environmentVariables: []
|
|
|
|
appVolumeMounts:
|
|
nextcloud-data:
|
|
emptyDir: true
|
|
mountPath: "/var/www"
|
|
|
|
postgresAppVolumeMounts:
|
|
postgres-data:
|
|
emptyDir: true
|
|
mountPath: "/var/lib/postgresql/data"
|
|
postgres-backup:
|
|
emptyDir: true
|
|
mountPath: "/postgres_backups"
|
|
|
|
dnsConfig:
|
|
options: []
|