From 43340905d79a2a6e833f9aa1ca95682ca40a05b5 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 26 Nov 2025 02:18:10 +0000 Subject: [PATCH] Upload files to "apps/calibre-web-gitops" --- apps/calibre-web-gitops/pvc-config.yaml | 12 ++++++++++++ apps/calibre-web-gitops/service.yaml | 14 ++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 apps/calibre-web-gitops/pvc-config.yaml create mode 100644 apps/calibre-web-gitops/service.yaml diff --git a/apps/calibre-web-gitops/pvc-config.yaml b/apps/calibre-web-gitops/pvc-config.yaml new file mode 100644 index 0000000..2ba5355 --- /dev/null +++ b/apps/calibre-web-gitops/pvc-config.yaml @@ -0,0 +1,12 @@ + +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: calibre-config + namespace: calibre-web +spec: + accessModes: ["ReadWriteOnce"] + storageClassName: longhorn + resources: + requests: + storage: 5Gi diff --git a/apps/calibre-web-gitops/service.yaml b/apps/calibre-web-gitops/service.yaml new file mode 100644 index 0000000..a32521b --- /dev/null +++ b/apps/calibre-web-gitops/service.yaml @@ -0,0 +1,14 @@ + +apiVersion: v1 +kind: Service +metadata: + name: calibre-web + namespace: calibre-web +spec: + type: ClusterIP + ports: + - port: 8083 + targetPort: 8083 + protocol: TCP + selector: + app: calibre-web