Adding in option for additional mounts (#79)

This commit is contained in:
Drew Stinnett
2020-02-04 15:04:32 -05:00
committed by GitHub
parent 7c2ec8721c
commit 03dfd95664
4 changed files with 22 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ apiVersion: v1
appVersion: 1.16.0.1226-7eb2c8f6f appVersion: 1.16.0.1226-7eb2c8f6f
description: Plex Media Server description: Plex Media Server
name: kube-plex name: kube-plex
version: 0.2.5 version: 0.2.6
keywords: keywords:
- plex - plex
home: https://plex.tv/ home: https://plex.tv/
+1
View File
@@ -40,6 +40,7 @@ The following tables lists the configurable parameters of the Plex chart and the
| `persistence.data.subPath` | SubPath to use for existing Claim | `nil` | | `persistence.data.subPath` | SubPath to use for existing Claim | `nil` |
| `persistence.data.storageClass` | Type of persistent volume claim | `-` | | `persistence.data.storageClass` | Type of persistent volume claim | `-` |
| `persistence.data.accessMode` | Persistent volume access mode | `ReadWriteMany` | | `persistence.data.accessMode` | Persistent volume access mode | `ReadWriteMany` |
| `persistence.extraData` | Extra data mounts. Should be an array of items matching persistence.data entries | `[]` |
| `persistence.config.size` | Size of persistent volume claim | `20Gi` | | `persistence.config.size` | Size of persistent volume claim | `20Gi` |
| `persistence.config.claimName`| Use an existing PVC to persist data | `nil` | | `persistence.config.claimName`| Use an existing PVC to persist data | `nil` |
| `persistence.config.subPath` | SubPath to use for existing Claim | `nil` | | `persistence.config.subPath` | SubPath to use for existing Claim | `nil` |
@@ -143,6 +143,10 @@ spec:
{{- if .Values.persistence.transcode.subPath }} {{- if .Values.persistence.transcode.subPath }}
subPath: {{ .Values.persistence.transcode.subPath }} subPath: {{ .Values.persistence.transcode.subPath }}
{{ end }} {{ end }}
{{- range .Values.persistence.extraData }}
- mountPath: "/data-{{ .name }}"
name: "extradata-{{ .name }}"
{{- end }}
- name: shared - name: shared
mountPath: /shared mountPath: /shared
resources: resources:
@@ -176,6 +180,15 @@ spec:
{{- end }} {{- end }}
{{- else }} {{- else }}
emptyDir: {} emptyDir: {}
{{- end }}
{{- range .Values.persistence.extraData }}
- name: "extradata-{{ .name }}"
persistentVolumeClaim:
{{- if .claimName }}
claimName: "{{ .claimName }}"
{{- else }}
claimName: "extradata-{{ .name }}"
{{- end }}
{{- end }} {{- end }}
- name: shared - name: shared
emptyDir: {} emptyDir: {}
+7
View File
@@ -94,6 +94,13 @@ persistence:
size: 40Gi size: 40Gi
# Access mode for this volume # Access mode for this volume
accessMode: ReadWriteMany accessMode: ReadWriteMany
extraData: []
# Optionally specifify additional Data mounts. These will be mounted as
# /data-${name}. This should be in the same format as the above 'data',
# with the additional field 'name'
# - claimName: "special-tv"
# name: 'foo'
config: config:
# 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 config directory. If claimName is specified, storageClass and size # the config directory. If claimName is specified, storageClass and size