diff --git a/transmission/Chart.yaml b/transmission/Chart.yaml index fa80782..39068d5 100644 --- a/transmission/Chart.yaml +++ b/transmission/Chart.yaml @@ -14,7 +14,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 0.1.0 +version: 0.1.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. diff --git a/transmission/templates/statefulset.yaml b/transmission/templates/statefulset.yaml index 2a2392c..09cb4c0 100644 --- a/transmission/templates/statefulset.yaml +++ b/transmission/templates/statefulset.yaml @@ -51,12 +51,12 @@ spec: volumeMounts: - name: trans-config mountPath: /config - - name: trans-tv - mountPath: /tv + - name: trans-media + mountPath: /media volumes: - - name: trans-tv + - name: trans-media persistentVolumeClaim: - claimName: transtv-pvc + claimName: {{ .Values.mediaPvc }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/transmission/values.yaml b/transmission/values.yaml index 406acbf..94befd4 100644 --- a/transmission/values.yaml +++ b/transmission/values.yaml @@ -71,3 +71,5 @@ affinity: {} config: storageClassName: nfs-client-hermes storageSize: 5Gi + +mediaPvc: trans-media-pvc