Noushad Ali
06/27/2025, 10:23 AMMichael Ullock
06/27/2025, 10:33 AMRobert Moucha
06/27/2025, 11:21 AMnew in gooddata-cn-etcd StatefulSet. If it is set to existing, patch the StatefulSet and set it to new.
2. delete all 3 PVCs belonging to etcd: kubectl -n YOUR-NAMESPACE delete pvc -l <http://app.kubernetes.io/component=etcd|app.kubernetes.io/component=etcd> --wait=false . The argument --wait=true is important.
3. delete all etcd pods at once: kubectl -n YOUR-NAMESPACE delete pod -l <http://app.kubernetes.io/component=etcd|app.kubernetes.io/component=etcd> Pods will be deleted, along with their PVCs, and then created, and resulting cluster will be operational.
4. patch etcd StatefulSet and set ETCD_INITIAL_CLUSTER_STATE to existingRobert Moucha
06/27/2025, 11:23 AMNoushad Ali
06/27/2025, 11:25 AMNoushad Ali
06/27/2025, 11:27 AM2 are we supposed to --wait=false or --wait=true ?Robert Moucha
06/27/2025, 11:28 AMNoushad Ali
06/28/2025, 3:51 AM