기본 콘텐츠로 건너뛰기

추천 가젯

Vault Disaster Recovery in EKS: How to Handle It

 # 🔐 Vault Disaster Recovery in EKS: How to Handle It If you're running Vault in Kubernetes (EKS) using Raft as the storage backend, one of the most stressful moments is: > ❗ “What happens if a Vault Pod and its PVC are deleted?” In this post, I’ll walk you through a real-world disaster recovery scenario — where a Vault Pod and its persistent volume go missing — and how you can **quickly and safely recover** your Raft-based Vault cluster. --- ## 📆 Environment Setup (Assumptions) - HashiCorp Vault 1.19+ - Deployed on EKS using Helm - Raft as the storage backend (each Vault Pod uses EBS-backed PVC) - 3 Vault Pods: `vault-0`, `vault-1`, `vault-2` - NodeGroup located in a single AZ (e.g., `us-west-1`) --- ## 💥 Failure Scenario: Deleting vault-0 Pod + PVC ```bash kubectl delete pod vault-0 -n vault kubectl delete pvc data-vault-0 -n vault ``` After deletion, the StatefulSet recreates the Pod — but since the PVC is gone, Vault starts in `Initialized: false` state, and cannot be uns...

최근 글

k8s EKS + Vault Raft 장애 복구 가이드

[Kubernetes] 클러스터에 마스터 & 워커 노드 추가하기

[Kubernetes] 갑자기 Pod가 안 떠? 인증서 만료를 의심해보세요!

💻 실전 프로그래밍 | 라즈베리파이4에 Ubuntu 설치 및 SSH 원격 접속 완벽 가이드

💻 실전 프로그래밍 | React 라우팅(Routing) 완벽 정리 및 활용법 가이드

💻 실전 프로그래밍 | 리눅스 초보자를 위한 필수 명령어 20가지 총정리

💻 실전 프로그래밍 | React 상태 관리 필수 라이브러리, Recoil 완벽 활용법 🚀

🤖 AI 트렌드 리포트 | 클로드와 ChatGPT: 코딩 도우미 비교 분석

🤖 AI 트렌드 리포트 | GPT-4.5의 감성 지능과 창의성 향상 - 예상되는 도전과 기회

🚀 테크 트렌드 탐구 | Ubuntu 20.04 서버 설치 가이드 완벽 정리 (2025 업데이트)