testing a few sample (joint) configurations
This commit is contained in:
@@ -23,3 +23,29 @@ spec:
|
||||
requests:
|
||||
storage: "150Gi"
|
||||
volumeName: nextcloud-nfs
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolume
|
||||
metadata:
|
||||
name: nextcloud-syncthing-shared
|
||||
spec:
|
||||
capacity:
|
||||
storage: "150Gi"
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
nfs:
|
||||
path: /kluster/syncthing
|
||||
server: 192.168.1.157
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: nextcloud-syncthing-shared
|
||||
spec:
|
||||
storageClassName: ""
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: "150Gi"
|
||||
volumeName: nextcloud-syncthing-shared
|
@@ -1,9 +1,6 @@
|
||||
## Official nextcloud image version
|
||||
## ref: https://hub.docker.com/r/library/nextcloud/tags/
|
||||
|
||||
image:
|
||||
tag: "28"
|
||||
|
||||
ingress:
|
||||
enabled: false
|
||||
|
||||
@@ -49,6 +46,15 @@ nextcloud:
|
||||
# ref: https://docs.nextcloud.com/server/15/admin_manual/configuration_server/config_sample_php_parameters.html#multiple-config-php-file
|
||||
configs: {}
|
||||
|
||||
extraVolumes:
|
||||
- name: my-volume
|
||||
persistentVolumeClaim:
|
||||
claimName: nextcloud-nfs
|
||||
|
||||
extraVolumeMounts:
|
||||
- name: my-volume
|
||||
mountPath: /var/www/html/my-volume
|
||||
|
||||
# For example, to use S3 as primary storage
|
||||
# ref: https://docs.nextcloud.com/server/13/admin_manual/configuration_files/primary_storage.html#simple-storage-service-s3
|
||||
#
|
||||
@@ -74,8 +80,7 @@ nginx:
|
||||
enabled: false
|
||||
|
||||
internalDatabase:
|
||||
enabled: true
|
||||
name: nextcloud
|
||||
enabled: false
|
||||
|
||||
##
|
||||
## External database configuration
|
||||
@@ -89,13 +94,7 @@ externalDatabase:
|
||||
## Database host
|
||||
host: postgres-postgresql.postgres
|
||||
|
||||
## Database user
|
||||
# user: nextcloud
|
||||
|
||||
# ## Database password
|
||||
# password: test
|
||||
|
||||
## Database name
|
||||
database: nextcloud
|
||||
|
||||
## Use a existing secret
|
||||
|
Reference in New Issue
Block a user