From 38652260b575fa55d031b70badb22efccb0798a8 Mon Sep 17 00:00:00 2001 From: kahirokunn Date: Mon, 10 Mar 2025 22:33:33 +0900 Subject: [PATCH] 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 --- deploy/etcd/etcd-cluster.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deploy/etcd/etcd-cluster.yaml b/deploy/etcd/etcd-cluster.yaml index 785c8c8..22e4840 100644 --- a/deploy/etcd/etcd-cluster.yaml +++ b/deploy/etcd/etcd-cluster.yaml @@ -104,7 +104,9 @@ spec: fieldRef: fieldPath: metadata.namespace volumeClaimTemplates: - - metadata: + - apiVersion: v1 + kind: PersistentVolumeClaim + metadata: name: data spec: accessModes: ["ReadWriteOnce"]