From 0e5566d3b95e66f276898170e755a40b58a65ff2 Mon Sep 17 00:00:00 2001 From: CTO Agent Date: Sun, 12 Jul 2026 17:11:14 +0000 Subject: [PATCH] Add missing mysql-data-encrypted PVC definition to bookstack manifests The MySQL deployment was referencing a PVC that wasn't defined in the manifests. This PVC exists in the cluster but wasn't tracked by Argo CD. Adding the definition ensures Argo CD can properly manage all resources and prevents sync issues. Co-Authored-By: Paperclip --- apps/bookstack/bookstack-deployment.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/apps/bookstack/bookstack-deployment.yaml b/apps/bookstack/bookstack-deployment.yaml index 82813ab..97baace 100644 --- a/apps/bookstack/bookstack-deployment.yaml +++ b/apps/bookstack/bookstack-deployment.yaml @@ -62,6 +62,20 @@ spec: persistentVolumeClaim: claimName: mysql-data-encrypted --- +# MySQL Data PersistentVolumeClaim +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: mysql-data-encrypted + namespace: bookstack +spec: + accessModes: + - ReadWriteOnce + storageClassName: hcloud-volumes-encrypted + resources: + requests: + storage: 20Gi +--- # MySQL Service apiVersion: v1 kind: Service