Vault documentation on vault operator raft snapshot save
states:
Note: Snapshot is not supported when Raft is used only for
ha_storage
.
What exactly does that mean?
We operate a Vault cluster of 3 replicas in HA mode using the Raft storage back end, deployed via Helm.
server:
...
ha:
enabled: true
replicas: 3
raft:
enabled: true
setNodeId: true
config: >
...
listener "tcp" {
tls_disable = true
address = "[::]:8200"
cluster_address = "[::]:8201"
...
}
storage "raft" {
path = "/vault/data"
}
service_registration "kubernetes" {}
Does the mentioned quote apply to the above configuration? Or else: will a vault operator raft snapshot save
(on the active instance) produce a usable / sensible result?