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:
parent
c32e04c840
commit
0e5566d3b9
1 changed files with 14 additions and 0 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue