allow to change accessmode for transode volume (#85)
This commit is contained in:
@@ -34,6 +34,7 @@ The following tables lists the configurable parameters of the Plex chart and the
|
|||||||
| `persistence.transcode.claimName`| Use an existing PVC to persist data | `nil` |
|
| `persistence.transcode.claimName`| Use an existing PVC to persist data | `nil` |
|
||||||
| `persistence.transcode.subPath` | SubPath to use for existing Claim | `nil` |
|
| `persistence.transcode.subPath` | SubPath to use for existing Claim | `nil` |
|
||||||
| `persistence.transcode.storageClass` | Type of persistent volume claim | `-` |
|
| `persistence.transcode.storageClass` | Type of persistent volume claim | `-` |
|
||||||
|
| `persistence.transcode.accessMode` | Persistent volume access mode | `ReadWriteMany` |
|
||||||
| `persistence.data.size` | Size of persistent volume claim | `40Gi` |
|
| `persistence.data.size` | Size of persistent volume claim | `40Gi` |
|
||||||
| `persistence.data.claimName`| Use an existing PVC to persist data | `nil` |
|
| `persistence.data.claimName`| Use an existing PVC to persist data | `nil` |
|
||||||
| `persistence.data.subPath` | SubPath to use for existing Claim | `nil` |
|
| `persistence.data.subPath` | SubPath to use for existing Claim | `nil` |
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ metadata:
|
|||||||
component: transcode
|
component: transcode
|
||||||
spec:
|
spec:
|
||||||
accessModes:
|
accessModes:
|
||||||
- ReadWriteMany
|
- {{ .Values.persistence.config.accessMode | quote }}
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
storage: {{ .Values.persistence.transcode.size | quote }}
|
storage: {{ .Values.persistence.transcode.size | quote }}
|
||||||
|
|||||||
@@ -77,6 +77,8 @@ persistence:
|
|||||||
# The requested size of the volume to be used when creating a
|
# The requested size of the volume to be used when creating a
|
||||||
# PersistentVolumeClaim.
|
# PersistentVolumeClaim.
|
||||||
size: 20Gi
|
size: 20Gi
|
||||||
|
# Access mode for this volume
|
||||||
|
accessMode: ReadWriteMany
|
||||||
data:
|
data:
|
||||||
# Optionally specify claimName to manually override the PVC to be used for
|
# Optionally specify claimName to manually override the PVC to be used for
|
||||||
# the data directory. If claimName is specified, storageClass and size are
|
# the data directory. If claimName is specified, storageClass and size are
|
||||||
|
|||||||
Reference in New Issue
Block a user