|
@@ -1,46 +1,35 @@
|
|
|
-## Official nextcloud image version
|
|
|
-## ref: https://hub.docker.com/r/library/nextcloud/tags/
|
|
|
-##
|
|
|
+appVolumeMounts:
|
|
|
+ nextcloud-data:
|
|
|
+ emptyDir: true
|
|
|
+ mountPath: /var/www
|
|
|
+dnsConfig:
|
|
|
+ options: []
|
|
|
+emptyDirVolumes: true
|
|
|
+environmentVariables: []
|
|
|
image:
|
|
|
- repository: nextcloud
|
|
|
- tag: 21.0.2
|
|
|
pullPolicy: IfNotPresent
|
|
|
-
|
|
|
+ repository: nextcloud
|
|
|
+ tag: '22'
|
|
|
+ixChartContext: {}
|
|
|
nextcloud:
|
|
|
+ datadir: /var/www/html/data
|
|
|
host: nextcloud.kube.home
|
|
|
- username: admin
|
|
|
password: changeme
|
|
|
- datadir: /var/www/html/data
|
|
|
-
|
|
|
-updateStrategy: "Recreate"
|
|
|
-
|
|
|
+ username: admin
|
|
|
+postgresAppVolumeMounts:
|
|
|
+ postgres-backup:
|
|
|
+ emptyDir: true
|
|
|
+ mountPath: /postgres_backups
|
|
|
+ postgres-data:
|
|
|
+ emptyDir: true
|
|
|
+ mountPath: /var/lib/postgresql/data
|
|
|
postgresql:
|
|
|
backupVolume:
|
|
|
- mountPath: "/postgres_backups"
|
|
|
- datasetName: "ix-postgres_backups"
|
|
|
+ datasetName: ix-postgres_backups
|
|
|
+ mountPath: /postgres_backups
|
|
|
dataVolume:
|
|
|
- mountPath: "/var/lib/postgresql/data"
|
|
|
- datasetName: "ix-postgres_data"
|
|
|
-
|
|
|
+ datasetName: ix-postgres_data
|
|
|
+ mountPath: /var/lib/postgresql/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: []
|
|
|
+updateStrategy: Recreate
|