You should be using HA and PVCs on k8s deployment of vault.
Auto-"un"seal is available via cloud providers … you could use another external Vault instance with it’s transit engine as the auto-unseal for your k8s Vault, but realisticly you’re better off signing up for the free tier of a cloud provider and use their KMS.
@aram
Thanks for your kind response.
I could not able to see any examples specific for PVC… Most of the examples and documentation based on raft storage.
It might be my bad but what is the difference between raft and PVC ?
Raft is the protocol and “clustering” … { I’m going to preface this with I’m just starting out with Kubernetes, so the following may not be exact }
PVC is the storage class for Kubernetes.
The pods then use that PVC (the claim to a storage request) to store their data (makes them persistent) – so that when you upgrade/restart the pods you don’t lose your data.
The helm chart takes care of the PV/PVC requests so you don’t need to. You can see the flags in the sample values.yaml (for example you can turn on auditStorage which will add another PVC for persisting your audit logs).