Skip to content

Commit

Permalink
Merge pull request #269 from chrisbsmith/homebridge
Browse files Browse the repository at this point in the history
create pvc outside helm
  • Loading branch information
chrisbsmith authored Apr 3, 2024
2 parents d97a7dd + 38562c2 commit c49af39
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
6 changes: 1 addition & 5 deletions kubernetes/apps/services/homebridge/app/helmrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,7 @@ spec:
persistence:
homebridge:
enabled: true
retain: true
type: persistentVolumeClaim
storageClass: synology-csi-retain
accessMode: ReadWriteOnce
size: 1Gi
existingClaim: homebridge

ingress:
app:
Expand Down
1 change: 1 addition & 0 deletions kubernetes/apps/services/homebridge/app/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ./pvc.yaml
- ./helmrelease.yaml
- ../../../../templates/gatus/internal
13 changes: 13 additions & 0 deletions kubernetes/apps/services/homebridge/app/pvc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: homebridge
namespace: services
spec:
accessModes:
- ReadWriteMany
storageClassName: synology-csi-retain
resources:
requests:
storage: 1Gi

0 comments on commit c49af39

Please sign in to comment.