You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AGENT_INJECT_VAULT_ADDR allows us to specify an external vault server address; however, I'd like also to add a custom CA to validate the vault server TLS. How do I specify that for vault injector?
The text was updated successfully, but these errors were encountered:
Discovered this today. This can be done via a Secret in Kubernetes and some annotations. In the namespace you're spawning applications that consume the injector, there should be a Secret with the CA cert in it:
How it works is that the annotation vault.hashicorp.com/tls-secret will mount the Kubernetes secret (e.g. tls-ca) to /vault/tls and then you reference it in the vault.hashicorp/ca-cert annotation.
This is hidden away in the documentation under vault.hashicorp.com/tls-secret. Hope that's what you're looking for.
AGENT_INJECT_VAULT_ADDR allows us to specify an external vault server address; however, I'd like also to add a custom CA to validate the vault server TLS. How do I specify that for vault injector?
The text was updated successfully, but these errors were encountered: