Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit a7b957f

Browse files
committed
fix prod
1 parent e88097c commit a7b957f

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

kubernetes-dev/microservices/payment-billing-microservice.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
storageClassName: longhorn
1111
resources:
1212
requests:
13-
storage: 20Gi
13+
storage: 5Gi
1414

1515
---
1616

kubernetes/microservices/payment-billing-microservice.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# pdf-storage-pvc.yaml
2+
apiVersion: v1
3+
kind: PersistentVolumeClaim
4+
metadata:
5+
name: payment-billing-pdfs
6+
namespace: funixproductions
7+
spec:
8+
accessModes:
9+
- ReadWriteMany
10+
storageClassName: longhorn
11+
resources:
12+
requests:
13+
storage: 20Gi
14+
15+
---
16+
117
apiVersion: apps/v1
218
kind: Deployment
319

@@ -76,8 +92,8 @@ spec:
7692
key: sentry-funixprod-api-key
7793
volumes:
7894
- name: pdf-storage
79-
hostPath:
80-
path: /root/k3s/data/funixproductions/
95+
persistentVolumeClaim:
96+
claimName: payment-billing-pdfs
8197

8298
---
8399

0 commit comments

Comments
 (0)