Getting Started With Hashicorp Vault

To learn about the basics of Hashicorp Vault Secrets are something that contains sensitive information required for authentication and authorization that cannot be shared publicly and has to be kept secure through encryption. As in this blog, we saw that Kubernetes secrets are not encrypted and are base64 encoded only and can be easily accessed through etcd. […]

Vault In Kubernetes With Sidecar Injection

To know how to inject secrets into the kubernetes pods via vault agent sidecar injector Keeping Kubernetes secret a secret (secure) is one of the challenges an organization faces as these secrets are only encoded and not encrypted by default at REST. These secrets are stored in ETCD, a key/values store with all the Kubernetes configurations. Creating a Kubernetes secret […]