The error message "core: security barrier not initialized" is appearing when trying to deploy Vault using a Helm chart. I haven't setup the seal How to setup a seal
Asked
Active
Viewed 1,112 times
1 Answers
4
You're getting this message because you haven't initialized Vault yet. The first thing you'll need to do when Vault is up and running is run the command: vault operator init
. If you didn't go about setting up some sort of auto unseal (which it sounds like you didn't), the default seal type is Shamir seal and Vault will give you back 5 unseal keys. Enter 3 of those keys in with the command vault operator unseal
and you'll have an unsealed, working Vault instance.

mleon
- 126
- 4
-
Thanks Mleon. I tried, kubectl exec -ti
-n – Aravinda krishnan Apr 10 '23 at 10:28-- vault operator init kubectl exec -ti -n -- vault operator unseal It works :)