* feat: Add release charts workflow Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * fix: helm workflow Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * fix: artifacthub file location Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * feat: bump chart to 1.2.0 Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * fix: documentation build Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * fix: install oras in first job Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * fix: release workflow Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * fix: release workflow add package read permission Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * fix: login to ghcr.io at the beginning of job Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * fix: avoid exiting on oras discover Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * fix: documentation typo * feat: prepare for release Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> * fix: remove myself from codeowners Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr> --------- Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
20 lines
631 B
YAML
20 lines
631 B
YAML
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: {{ include "jellyseerr.configPersistenceName" . }}
|
|
labels:
|
|
{{- include "jellyseerr.labels" . | nindent 4 }}
|
|
spec:
|
|
{{- with .Values.config.persistence.accessModes }}
|
|
accessModes:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- if .Values.config.persistence.volumeName }}
|
|
volumeName: {{ .Values.config.persistence.volumeName }}
|
|
{{- end }}
|
|
{{- with .Values.config.persistence.storageClass }}
|
|
storageClassName: {{ if (eq "-" .) }}""{{ else }}{{ . }}{{ end }}
|
|
{{- end }}
|
|
resources:
|
|
requests:
|
|
storage: "{{ .Values.config.persistence.size }}" |