diff --git a/charts/calibre-server/Chart.yaml b/charts/calibre-server/Chart.yaml index cca3af6..c3d2892 100644 --- a/charts/calibre-server/Chart.yaml +++ b/charts/calibre-server/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: calibre-server -version: 0.0.2 +version: 0.0.3 description: Chart for Calibre content database keywords: - media diff --git a/charts/calibre-server/templates/deployment.yaml b/charts/calibre-server/templates/deployment.yaml index d0334b6..d4ec948 100644 --- a/charts/calibre-server/templates/deployment.yaml +++ b/charts/calibre-server/templates/deployment.yaml @@ -49,8 +49,6 @@ spec: {{- end }} volumeMounts: - mountPath: /config - name: calibre-server-config - - mountPath: /books name: calibre-server-books resources: {{- toYaml .Values.deployment.resources | nindent 12 }} @@ -76,9 +74,6 @@ spec: timeoutSeconds: 1 periodSeconds: 5 volumes: - - name: calibre-server-config - persistentVolumeClaim: - claimName: calibre-server-config - name: calibre-server-books persistentVolumeClaim: claimName: {{ .Values.persistence.books.claimName }} diff --git a/charts/calibre-server/templates/persistant-volume-claim.yaml b/charts/calibre-server/templates/persistant-volume-claim.yaml deleted file mode 100644 index 9b9f50a..0000000 --- a/charts/calibre-server/templates/persistant-volume-claim.yaml +++ /dev/null @@ -1,20 +0,0 @@ -kind: PersistentVolumeClaim -apiVersion: v1 -metadata: - name: calibre-server-config - namespace: {{ .Release.Namespace }} - labels: - app.kubernetes.io/name: calibre-server - app.kubernetes.io/instance: {{ .Release.Name }} - app.kubernetes.io/version: {{ .Chart.AppVersion }} - app.kubernetes.io/component: web - app.kubernetes.io/part-of: {{ .Release.Name }} - app.kubernetes.io/managed-by: helm -spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: {{ .Values.persistence.config.storageSize }} - storageClassName: {{ .Values.persistence.config.storageClassName }} - volumeMode: {{ .Values.persistence.config.volumeMode }} diff --git a/charts/calibre-server/values.yaml b/charts/calibre-server/values.yaml index f85311b..79e1a92 100644 --- a/charts/calibre-server/values.yaml +++ b/charts/calibre-server/values.yaml @@ -34,9 +34,5 @@ ingressRoute: outpost: authentik-proxy-outpost port: 9000 persistence: - config: - storageClassName: ceph-block - storageSize: 5Gi - volumeMode: Filesystem books: claimName: calibre-server-nfs-storage