Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
{{- if eq .Values.db.type "sqlite3" }}
apiVersion: v1
kind: PersistentVolume
metadata:
name: db-pv-volume
labels:
type: local
spec:
storageClassName: local-path
capacity:
storage: 40Gi
accessModes:
- ReadWriteOnce
hostPath:
path: /mnt/ssd/db
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: db-pv-claim
spec:
storageClassName: local-path
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10Gi
{{- end }}