Vault agent injector examples
The following are different configuration examples to support a variety of deployment models.
A common mistake is to set the annotation on the Deployment or other resource. Ensure that the injector annotations are specified on the pod specification when using higher level constructs such as deployments, jobs or statefulsets.
Before using the Vault agent injector
Before applying Vault Agent injection annotations to pods, the following requirements should be satisfied.
Connectivity
- the Kubernetes API can connect to the Vault Agent injector service on port
443
, and the injector can connect to the Kubernetes API, - Vault can connect to the Kubernetes API,
- Pods in the Kubernetes cluster can connect to Vault.
Note: The Kubernetes API typically runs on the master nodes, and the Vault Agent injector
on a worker node in a Kubernetes cluster.
On Kubernetes clusters that have aggregator routing enabled (ex. GKE private
clusters),
the Kubernetes API will connect directly to the injector service endpoint,
which is on port 8080
.
Kubernetes and Vault configuration
- Kubernetes auth method should be configured and enabled in Vault,
- Pod should have a service account,
- desired secrets exist within Vault,
- the service account should be bound to a Vault role with a policy enabling access to desired secrets.
For more information on configuring the Vault Kubernetes auth method, see the official documentation.
Debugging
If an error occurs with a mutation request, Kubernetes will attach the error to the owner of the pod. Check the following for errors:
- If the pod was created by a deployment or statefulset, check for errors in the
replicaset
that owns the pod. - If the pod was created by a job, check the
job
for errors.
Patching existing pods
To patch existing pods, a Kubernetes patch can be applied to add the required annotations to pods. When applying a patch, the pods will be rescheduled.
First, create the patch:
Next, apply the patch:
The pod should now be rescheduled with additional containers. The pod can be inspected
using the kubectl describe
command:
Deployments, StatefulSets, etc.
The annotations for configuring Vault Agent injection must be on the pod specification. Since higher level resources such as Deployments wrap pod specification templates, Vault Agent Injector can be used with all of these higher level constructs, too.
An example Deployment below shows how to enable Vault Agent injection:
ConfigMap example
The following example creates a deployment that mounts a Kubernetes ConfigMap containing Vault Agent configuration files. For a complete list of the Vault Agent configuration settings, see the Agent documentation.
Environment variable example
The following example demonstrates how templates can be used to create environment variables. A template should be created that exports a Vault secret as an environment variable and the application container should source those files during startup.
AppRole authentication
The following example demonstrates how the AppRole authentication method can be used by Vault Agent for retrieving secrets. A Kubernetes secret containing the AppRole secret ID and role ID should be created first.
PKI cert example
The following example demonstrates how to use the pkiCert
function and
writeToFile
function from consul-template to create two files
from a template: one for the certificate and CA (cert.pem
) and one for the key
(cert.key
) generated by Vault's PKI Secrets Engine.
Cross namespace secret sharing
- Configure Vault for secret sharing across namespaces.
- Use the following Pod annotations to authenticate to the Kubernetes method in
the
us-west-org
namespace and render secrets from theus-east-org
namespace into the file/vault/secrets/marketing