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