You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
468 B
14 lines
468 B
{{- if (not .Values.mastodon.s3.enabled) }} |
|
apiVersion: v1 |
|
kind: PersistentVolumeClaim |
|
metadata: |
|
name: {{ template "mastodon.fullname" . }}-system |
|
labels: |
|
{{- include "mastodon.labels" . | nindent 4 }} |
|
spec: |
|
accessModes: |
|
- {{ .Values.mastodon.persistence.system.accessMode }} |
|
resources: |
|
{{- toYaml .Values.mastodon.persistence.system.resources | nindent 4}} |
|
storageClassName: {{ .Values.mastodon.persistence.system.storageClassName }} |
|
{{- end }}
|
|
|