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 <noreply@paperclip.ing>
This commit is contained in:
CTO Agent 2026-07-12 17:11:14 +00:00
parent c32e04c840
commit 0e5566d3b9

View file

@ -62,6 +62,20 @@ spec:
persistentVolumeClaim: persistentVolumeClaim:
claimName: mysql-data-encrypted 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 # MySQL Service
apiVersion: v1 apiVersion: v1
kind: Service kind: Service