Change pvc set up to local storage

This commit is contained in:
2024-08-18 22:29:58 +01:00
parent c3b68ec4fd
commit b3fe51e9da
9 changed files with 32 additions and 10 deletions

View File

@@ -1,6 +1,7 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
# resources:
# - deployment.yaml
# - service.yaml
# - ingress.yaml
resources:
- pvc.yaml
- deployment.yaml
- service.yaml
- ingress.yaml

8
apps/sonarr/pvc.yaml Normal file
View File

@@ -0,0 +1,8 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: sonarr-pvc
spec:
accessModes:
- ReadWriteOncePod
storageClassName: local-storage