You are looking at the documentation of a prior release. To read the documentation of the latest release, please
visit here.
Mount PostgreSQL credentials using CSI Driver
At first, you need to have a Kubernetes 1.14 or later cluster, and the kubectl command-line tool must be configured to communicate with your cluster. If you do not already have a cluster, you can create one by using kind. To check the version of your cluster, run:
$ kubectl version --short
Client Version: v1.16.2
Server Version: v1.14.0
Before you begin:
- Install KubeVault operator in your cluster from here.
- Install Secrets Store CSI driver for Kubernetes secrets in your cluster from here.
To keep things isolated, we are going to use a separate namespace called demo
throughout this tutorial.
$ kubectl create ns demo
namespace/demo created
Note: YAML files used in this tutorial stored in examples folder in GitHub repository KubeVault/docs
Vault Server
If you don’t have a Vault Server, you can deploy it by using the KubeVault operator.
The KubeVault operator can manage policies and secret engines of Vault servers which are not provisioned by the KubeVault operator. You need to configure both the Vault server and the cluster so that the KubeVault operator can communicate with your Vault server.
Now, we have the AppBinding that contains connection and authentication information about the Vault server. And we also have the service account that the Vault server can authenticate.
$ kubectl get serviceaccounts -n demo
NAME SECRETS AGE
vault 1 20h
$ kubectl get appbinding -n demo
NAME AGE
vault 50m
$ kubectl get appbinding -n demo vault -o yaml
apiVersion: appcatalog.appscode.com/v1alpha1
kind: AppBinding
metadata:
name: vault
namespace: demo
spec:
clientConfig:
caBundle: LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUN1RENDQWFDZ0F3SUJBZ0lCQURBTkJna3Foa2lHOXcwQkFRc0ZBREFOTVFzd0NRWURWUVFERXdKallUQWUKRncweE9URXhNVEl3T1RFMU5EQmFGdzB5T1RFeE1Ea3dPVEUxTkRCYU1BMHhDekFKQmdOVkJBTVRBbU5oTUlJQgpJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQkNnS0NBUUVBdFZFZmtic2c2T085dnM2d1Z6bTlPQ1FYClBtYzBYTjlCWjNMbXZRTG0zdzZGaWF2aUlSS3VDVk1hN1NRSGo2L2YvOHZPeWhqNEpMcHhCM0hCYVFPZ3RrM2QKeEFDbHppU1lEd3dDbGEwSThxdklGVENLWndreXQzdHVQb0xybkppRFdTS2xJait6aFZDTHZ0enB4MDE3SEZadApmZEdhUUtlSXREUVdyNUV1QWlCMjhhSVF4WXREaVN6Y0h3OUdEMnkrblRMUEd4UXlxUlhua0d1UlIvR1B3R3lLClJ5cTQ5NmpFTmFjOE8wVERYRkIydWJQSFNza2xOU1VwSUN3S1IvR3BobnhGak1rWm4yRGJFZW9GWDE5UnhzUmcKSW94TFBhWDkrRVZxZU5jMlczN2MwQlhBSGwyMHVJUWQrVytIWDhnOVBVVXRVZW9uYnlHMDMvampvNERJRHdJRApBUUFCb3lNd0lUQU9CZ05WSFE4QkFmOEVCQU1DQXFRd0R3WURWUjBUQVFIL0JBVXdBd0VCL3pBTkJna3Foa2lHCjl3MEJBUXNGQUFPQ0FRRUFabHRFN0M3a3ZCeTNzeldHY0J0SkpBTHZXY3ZFeUdxYUdCYmFUbGlVbWJHTW9QWXoKbnVqMUVrY1I1Qlg2YnkxZk15M0ZtZkJXL2E0NU9HcDU3U0RMWTVuc2w0S1RlUDdGZkFYZFBNZGxrV0lQZGpnNAptOVlyOUxnTThkOGVrWUJmN0paUkNzcEorYkpDU1A2a2p1V3l6MUtlYzBOdCtIU0psaTF3dXIrMWVyMUprRUdWClBQMzFoeTQ2RTJKeFlvbnRQc0d5akxlQ1NhTlk0UWdWK3ZneWJmSlFEMVYxbDZ4UlVlMzk2YkJ3aS94VGkzN0oKNWxTVklmb1kxcUlBaGJPbjBUWHp2YzBRRXBKUExaRDM2VDBZcEtJSVhjZUVGYXNxZzVWb1pINGx1Uk50SStBUAp0blg4S1JZU0xGOWlCNEJXd0N0aGFhZzZFZVFqYWpQNWlxZnZoUT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K
service:
name: vault
port: 8200
scheme: HTTPS
parameters:
apiVersion: config.kubevault.com/v1alpha1
kind: VaultServerConfiguration
path: kubernetes
vaultRole: vault-policy-controller
kubernetes:
serviceAccountName: vault
tokenReviewerServiceAccountName: vault-k8s-token-reviewer
usePodServiceAccountForCSIDriver: true
Enable and Configure PostgreSQL Database Secrets Engine
The following steps are required to enable and configure the PostgreSQL database secrets engine in the Vault server.
There are two ways to configure the Vault server. You can either use the KubeVault operator
or the Vault CLI
to manually configure a Vault server.
Using KubeVault operator
You need to be familiar with the following CRDs:
Let’s enable and configure the PostgreSQL database secret engine by deploying the following SecretEngine
yaml:
apiVersion: engine.kubevault.com/v1alpha1
kind: SecretEngine
metadata:
name: postgresql-engine
namespace: demo
spec:
vaultRef:
name: vault
path: my-postgres-se
postgres:
databaseRef:
name: postgres-app
namespace: demo
pluginName: postgresql-database-plugin
allowedRoles:
- "*"
To configure the PostgreSQL secret engine, you need to provide the PostgreSQL database connection and authentication information through an AppBinding.
$ kubectl get services -n demo
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
postgres ClusterIP 10.97.24.153 <none> 5432/TCP 86m
Let’s consider postgres
is the Kubernetes service name that communicate with postgres servers. You can also connect to the database server using URL
. Visit AppBinding documentation for more details. A sample AppBinding example with necessary k8s secret is given below:
apiVersion: appcatalog.appscode.com/v1alpha1
kind: AppBinding
metadata:
name: postgres-app
namespace: demo
spec:
secret:
name: postgres-user-cred # k8s secret name
clientConfig:
service:
name: postgres
scheme: postgresql
port: 5432
path: "postgres"
query: "sslmode=disable"
insecureSkipTLSVerify: true
---
apiVersion: v1
data:
username: cG9zdGdyZXM=
password: cm9vdA==
kind: Secret
metadata:
name: postgres-user-cred
namespace: demo
Let’s deploy SecretEngine:
$ kubectl apply -f docs/examples/guides/secret-engines/postgres/postgres-app.yaml
appbinding.appcatalog.appscode.com/postgres-app created
secret/postgres-user-cred created
$ kubectl apply -f docs/examples/guides/secret-engines/postgres/postgresSecretEngine.yaml
secretengine.engine.kubevault.com/postgresql-engine created
Wait till the status become Success
:
$ kubectl get secretengines -n demo
NAME STATUS
postgresql-engine Success
Create database role using the following PostgresRole
yaml:
apiVersion: engine.kubevault.com/v1alpha1
kind: PostgresRole
metadata:
name: psql-role
namespace: demo
spec:
vaultRef:
name: vault
path: my-postgres-se
databaseRef:
name: postgres-app
namespace: demo
creationStatements:
- "CREATE ROLE \"{{name}}\" WITH LOGIN PASSWORD '{{password}}' VALID UNTIL '{{expiration}}';"
- "GRANT SELECT ON ALL TABLES IN SCHEMA public TO \"{{name}}\";"
defaultTTL: 1h
maxTTL: 24h
Let’s deploy PostgresRole:
$ kubectl apply -f docs/examples/guides/secret-engines/postgres/postgresRole.yaml
postgresrole.engine.kubevault.com/psql-role created
$ kubectl get postgresrole -n demo
NAME AGE
psql-role 12s
You can also check from Vault that the role is created.
To resolve the naming conflict, name of the role in Vault will follow this format: k8s.{clusterName}.{metadata.namespace}.{metadata.name}
.
Don’t have Vault CLI? Download and configure it as described here
$ vault list my-postgres-se/roles
Keys
----
k8s.-.demo.psql-role
$ vault read my-postgres-se/roles/k8s.-.demo.psql-role
Key Value
--- -----
creation_statements [CREATE ROLE "{{name}}" WITH LOGIN PASSWORD '{{password}}' VALID UNTIL '{{expiration}}'; GRANT SELECT ON ALL TABLES IN SCHEMA public TO "{{name}}";]
db_name k8s.-.demo.postgres-app
default_ttl 1h
max_ttl 24h
renew_statements []
revocation_statements []
rollback_statements []
Using Vault CLI
You can also use Vault CLI to enable and configure the PostgreSQL secret engine.
Don’t have Vault CLI? Download and configure it as described here
To generate secret from the database secret engine, you have to perform the following steps.
- Enable Secret Engine: To enable the
database
secret engine, run the following command.
$ vault secrets enable -path=my-postgres-se database
Success! Enabled the database secrets engine at: my-postgres-se/
- Configure Secret Engine: Configure Vault with the proper plugin and connection information by running:
$ vault write my-postgres-se/config/k8s.-.demo.postgres-app \
plugin_name=postgresql-database-plugin \
allowed_roles="*" \
connection_url="postgresql://{{username}}:{{password}}@159.203.114.170:30595/postgresdb?sslmode=disable" \
username="postgresadmin" \
password="admin123"
Success! Data written to: my-postgres-se/config/k8s.-.demo.postgres-app
- Configure a Role: We need to configure a role that maps a name in Vault to an SQL statement to execute to create the database credential:
$ vault write my-postgres-se/roles/k8s.-.demo.psql-role \
db_name=k8s.-.demo.postgres-app \
creation_statements="CREATE ROLE \"{{name}}\" WITH LOGIN PASSWORD '{{password}}' VALID UNTIL '{{expiration}}'; \
GRANT SELECT ON ALL TABLES IN SCHEMA public TO \"{{name}}\";" \
default_ttl="1h" \
max_ttl="24h"
Success! Data written to: my-postgres-se/roles/k8s.-.demo.psql-role
- Read the Role:
$ vault list my-postgres-se/roles
Keys
----
k8s.-.demo.psql-role
$ vault read my-postgres-se/roles/k8s.-.demo.psql-role
Key Value
--- -----
creation_statements [CREATE ROLE "{{name}}" WITH LOGIN PASSWORD '{{password}}' VALID UNTIL '{{expiration}}'; GRANT SELECT ON ALL TABLES IN SCHEMA public TO "{{name}}";]
db_name k8s.-.demo.postgres-app
default_ttl 1h
max_ttl 24h
renew_statements []
revocation_statements []
rollback_statements []
If you use Vault CLI to enable and configure the PostgreSQL secret engine then you need to update the vault policy for the service account ‘vault’ created during vault server configuration and add the permission to read at “my-postgres-se/roles/*” with previous permissions. That is why it is recommended to use the KubeVault operator because the operator updates the policies automatically when needed.
Find how to update the policy for service account in here.
Mount secrets into a Kubernetes pod
Since Kubernetes 1.14, storage.k8s.io/v1beta1
CSINode
and CSIDriver
objects were introduced. Let’s check CSIDriver and CSINode are available or not.
$ kubectl get csidrivers
NAME CREATED AT
secrets.csi.kubevault.com 2019-12-09T04:32:50Z
$ kubectl get csinodes
NAME CREATED AT
2gb-pool-57jj7 2019-12-09T04:32:52Z
2gb-pool-jrvtj 2019-12-09T04:32:58Z
After configuring the Vault server
, now we have AppBinding vault
in demo
namespace.
Create StorageClass
Create StorageClass
object with the following content:
kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: vault-psql-storage
annotations:
storageclass.kubernetes.io/is-default-class: "false"
provisioner: secrets.csi.kubevault.com
parameters:
ref: demo/vault # namespace/AppBinding, we created during vault server configuration
engine: DATABASE # vault engine name
role: k8s.-.demo.psql-role # role name on vault which you want get access
path: my-postgres-se # specify the secret engine path, default is database
$ kubectl apply -f docs/examples/guides/secret-engines/postgres/storageClass.yaml
storageclass.storage.k8s.io/vault-psql-storage created
Test & Verify
Let’s create a separate namespace called trial
for testing purpose.
$ kubectl create ns trial
namespace/trail created
Create PVC
Create a PersistentVolumeClaim
with the following data. This makes sure a volume will be created and provisioned on your behalf.
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: csi-pvc-psql
namespace: trial
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
storageClassName: vault-psql-storage
$ kubectl apply -f docs/examples/guides/secret-engines/postgres/pvc.yaml
persistentvolumeclaim/csi-pvc-psql created
Create VaultPolicy and VaultPolicyBinding for Pod’s Service Account
Let’s say pod’s service account name is pod-sa
located in trial
namespace. We need to create a VaultPolicy and a VaultPolicyBinding so that the pod has access to read secrets from the Vault server.
apiVersion: policy.kubevault.com/v1alpha1
kind: VaultPolicy
metadata:
name: psql-se-policy
namespace: demo
spec:
vaultRef:
name: vault
# Here, postgres secret engine is enabled at "my-postgres-se".
# If the path was "demo-se", policy should be like
# path "demo-se/*" {}.
policyDocument: |
path "my-postgres-se/*" {
capabilities = ["create", "read"]
}
---
apiVersion: policy.kubevault.com/v1alpha1
kind: VaultPolicyBinding
metadata:
name: psql-se-role
namespace: demo
spec:
vaultRef:
name: vault
policies:
- ref: psql-se-policy
subjectRef:
kubernetes:
serviceAccountNames:
- "pod-sa"
serviceAccountNamespaces:
- "trial"
Let’s create VaultPolicy and VaultPolicyBinding:
$ kubectl apply -f docs/examples/guides/secret-engines/postgres/vaultPolicy.yaml
vaultpolicy.policy.kubevault.com/psql-se-policy created
$ kubectl apply -f docs/examples/guides/secret-engines/postgres/vaultPolicyBinding.yaml
vaultpolicybinding.policy.kubevault.com/psql-se-role created
Check if the VaultPolicy and the VaultPolicyBinding are successfully registered to the Vault server:
$ kubectl get vaultpolicy -n demo
NAME STATUS AGE
psql-se-policy Success 8s
$ kubectl get vaultpolicybinding -n demo
NAME STATUS AGE
psql-se-role Success 10s
Create Service Account for Pod
Let’s create the service account pod-sa
which was used in VaultPolicyBinding. When a VaultPolicyBinding object is created, the KubeVault operator create an auth role in the Vault server. The role name is generated by the following naming format: k8s.(clusterName or -).namespace.name
. Here, it is k8s.-.demo.psql-se-role
. We need to provide the auth role name as service account annotations
while creating the service account. If the annotation secrets.csi.kubevault.com/vault-role
is not provided, the CSI driver will not be able to perform authentication to the Vault.
apiVersion: v1
kind: ServiceAccount
metadata:
name: pod-sa
namespace: trial
annotations:
secrets.csi.kubevault.com/vault-role: k8s.-.demo.psql-se-role
$ kubectl apply -f docs/examples/guides/secret-engines/postgres/podServiceAccount.yaml
serviceaccount/pod-sa created
Create Pod
Now we can create a Pod which refers to this volume. When the Pod is created, the volume will be attached, formatted and mounted to the specific container.
apiVersion: v1
kind: Pod
metadata:
name: mypod
namespace: trial
spec:
containers:
- name: mypod
image: busybox
command:
- sleep
- "3600"
volumeMounts:
- name: my-vault-volume
mountPath: "/etc/postgresql"
readOnly: true
serviceAccountName: pod-sa # service account that was created
volumes:
- name: my-vault-volume
persistentVolumeClaim:
claimName: csi-pvc-psql
$ kubectl apply -f docs/examples/guides/secret-engines/postgres/pod.yaml
pod/mypod created
Check if the Pod is running successfully, by running:
$ kubectl get pods -n trial
NAME READY STATUS RESTARTS AGE
mypod 1/1 Running 0 11s
Verify Secret
If the Pod is running successfully, then check inside the app container by running
$ kubectl exec -it -n trial mypod sh
/ # ls /etc/postgresql
password username
/ # cat /etc/postgresql/username
v-kubernet-my-pg-ro-kikBd7yS6VQI070gAqSh-1544693186
So, we can see that database credentials (username, password) are mounted to the specified path.
Cleaning up
To clean up the Kubernetes resources created by this tutorial, run:
$ kubectl delete ns demo
namespace "demo" deleted
$ kubectl delete ns trial
namespace "trial" deleted