mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-23 17:52:36 -04:00
keep using pvc for example
This commit is contained in:
parent
bd89f4ac32
commit
d374108b37
@ -18,12 +18,6 @@ postgresql:
|
||||
enabled: true
|
||||
rabbitmq:
|
||||
enabled: true
|
||||
media:
|
||||
volumes:
|
||||
- name: media
|
||||
nfs:
|
||||
server: mynasserver
|
||||
path: /spin0/media
|
||||
extraObjects:
|
||||
- apiVersion: v1
|
||||
kind: Secret
|
||||
@ -38,6 +32,16 @@ extraObjects:
|
||||
rabbitmq_user: kyoo_all
|
||||
rabbitmq_password: youAreAmazing2
|
||||
rabbitmq_cookie: mmmGoodCookie
|
||||
- kind: PersistentVolumeClaim
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: media
|
||||
spec:
|
||||
accessModes:
|
||||
- "ReadOnlyMany"
|
||||
resources:
|
||||
requests:
|
||||
storage: "3Gi"
|
||||
```
|
||||
|
||||
## Common Setup
|
||||
|
@ -141,12 +141,16 @@ kyoo:
|
||||
# configures workloads that require access to media
|
||||
media:
|
||||
# specifies the volumes to use
|
||||
volumes: []
|
||||
volumes:
|
||||
# default volume configuration to allow for easier demo and testing
|
||||
# most setups will aim to leverage NFS to access media
|
||||
# - name: media
|
||||
# nfs:
|
||||
# server: mynasserver.mydomain.com
|
||||
# path: /spin0/media
|
||||
- name: media
|
||||
persistentVolumeClaim:
|
||||
claimName: media
|
||||
|
||||
# specifies where to mount the volumes
|
||||
# note that this should align with .media.baseMountPath
|
||||
|
Loading…
x
Reference in New Issue
Block a user