Skip to content

Commit 3865226

Browse files
authored
chore(deploy): add missing apiVersion and kind for PVC (#716)
- Fixes a deployment issue with CD tools like ArgoCD. - apiVersion and kind not set in source, causing drift. - Ensures consistent state across deployments. Signed-off-by: kahirokunn <[email protected]>
1 parent b231575 commit 3865226

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

deploy/etcd/etcd-cluster.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,9 @@ spec:
104104
fieldRef:
105105
fieldPath: metadata.namespace
106106
volumeClaimTemplates:
107-
- metadata:
107+
- apiVersion: v1
108+
kind: PersistentVolumeClaim
109+
metadata:
108110
name: data
109111
spec:
110112
accessModes: ["ReadWriteOnce"]

0 commit comments

Comments
 (0)