백업 방법1. 스냅샷 생성1) 비보안 엔드포인트$ ETCDCTL_API=3 etcdctl --endpoint=https://127.0.0.1:2379 snapshot save /path/to/backup/snapshot.db 2) 보안 엔드포인트$ ETCDCTL_API=3 etcdctl --endpoint=https://127.0.0.1:2379 \--cacert=$CACERT --cert=$CERT --key=$KEY \snapshot save /path/to/backup/snapshot.db 2. 스냅샷 검증$ etcdctl --write-out=table snapshot status출력 HASH, RVISION, TOTAL KEYS, TOTAL SIZE 확인복원 방법1. 스냅샷 복원1) 기본 명령어..