Hi,
I am using the vault helm chart and have HA mode enabled. I see the following error on the vault pods in my k8s cluster -
“A storage backend must be specified”.
This is the configuration that I am using:
" ha:
enabled: true
apiAddr: null
config: |
ui = true
listener “tcp” {
tls_disable = 1
address = “[::]:8200”
cluster_address = “[::]:8201”
}
storage “consul” {
path = “vault”
address = “HOST_IP:8500”
}"
I have deployed consul using consul helm chart.
Not sure what am I missing here!