Mounting secrets from an external secrets store to a CSI volume
After installing the Secrets Store CSI Driver Operator, you can mount secrets from your external secret store. Using an external secret store protects information that you do not want developers to have and can be more secure than secret objects.
The Secrets Store CSI Driver Operator has been tested with the following secrets store providers:
-
AWS Secrets Manager
-
AWS Systems Manager Parameter Store
-
Azure Key Vault
-
Google Secret Manager
-
HashiCorp Vault
Mounting secrets from {secrets-store-provider}
You can use the Secrets Store CSI Driver Operator to mount secrets from {secrets-store-provider} external secrets store to a Container Storage Interface (CSI) volume in Red Hat OpenShift Container Platform. Using an external secret store protects information that you do not want developers to have and can be more secure than secret objects.
-
You have access to the cluster as a user with the
cluster-adminrole. -
You have installed the
jqtool. -
You have extracted and prepared the
ccoctlutility. -
You have installed the cluster on Amazon Web Services (AWS) and the cluster uses AWS Security Token Service (STS).
-
You have installed the Secrets Store CSI Driver Operator. For more information, see "Installing the Secrets Store CSI driver".
-
You have configured {secrets-store-provider} to store the required secrets.
-
Install the {secrets-store-provider} provider:
-
Create a YAML file by using the following example configuration:
The {secrets-store-provider} provider for the Secrets Store CSI driver is an upstream provider.
This configuration is modified from the configuration provided in the upstream AWS documentation so that it works properly with Red Hat OpenShift Container Platform. Changes to this configuration might impact functionality.
Exampleaws-provider.yamlfileapiVersion: v1 kind: ServiceAccount metadata: name: csi-secrets-store-provider-aws namespace: openshift-cluster-csi-drivers --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: csi-secrets-store-provider-aws-cluster-role rules: - apiGroups: [""] resources: ["serviceaccounts/token"] verbs: ["create"] - apiGroups: [""] resources: ["serviceaccounts"] verbs: ["get"] - apiGroups: [""] resources: ["pods"] verbs: ["get"] - apiGroups: [""] resources: ["nodes"] verbs: ["get"] --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: csi-secrets-store-provider-aws-cluster-rolebinding roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: csi-secrets-store-provider-aws-cluster-role subjects: - kind: ServiceAccount name: csi-secrets-store-provider-aws namespace: openshift-cluster-csi-drivers --- apiVersion: apps/v1 kind: DaemonSet metadata: namespace: openshift-cluster-csi-drivers name: csi-secrets-store-provider-aws labels: app: csi-secrets-store-provider-aws spec: updateStrategy: type: RollingUpdate selector: matchLabels: app: csi-secrets-store-provider-aws template: metadata: labels: app: csi-secrets-store-provider-aws spec: serviceAccountName: csi-secrets-store-provider-aws hostNetwork: false containers: - name: provider-aws-installer image: public.ecr.aws/aws-secrets-manager/secrets-store-csi-driver-provider-aws:1.0.r2-50-g5b4aca1-2023.06.09.21.19 imagePullPolicy: Always args: - --provider-volume=/etc/kubernetes/secrets-store-csi-providers resources: requests: cpu: 50m memory: 100Mi limits: cpu: 50m memory: 100Mi securityContext: privileged: true volumeMounts: - mountPath: "/etc/kubernetes/secrets-store-csi-providers" name: providervol - name: mountpoint-dir mountPath: /var/lib/kubelet/pods mountPropagation: HostToContainer tolerations: - operator: Exists volumes: - name: providervol hostPath: path: "/etc/kubernetes/secrets-store-csi-providers" - name: mountpoint-dir hostPath: path: /var/lib/kubelet/pods type: DirectoryOrCreate nodeSelector: kubernetes.io/os: linux -
Grant privileged access to the
csi-secrets-store-provider-awsservice account by running the following command:$ oc adm policy add-scc-to-user privileged -z csi-secrets-store-provider-aws -n openshift-cluster-csi-drivers -
Create the provider resources by running the following command:
$ oc apply -f aws-provider.yaml
-
-
Grant the read permission to the service account for the AWS secret object:
-
Create a directory to contain the credentials request by running the following command:
$ mkdir <aws_creds_directory_name> -
Create a YAML file that defines the
CredentialsRequestresource configuration. See the following example configuration:apiVersion: cloudcredential.openshift.io/v1 kind: CredentialsRequest metadata: name: aws-creds-request namespace: openshift-cloud-credential-operator spec: providerSpec: apiVersion: cloudcredential.openshift.io/v1 kind: AWSProviderSpec secretRef: name: aws-creds namespace: my-namespace serviceAccountNames: - <service_account_name> -
Retrieve the OpenID Connect (OIDC) provider by running the following command:
$ oc get --raw=/.well-known/openid-configuration | jq -r '.issuer'Example outputhttps://<oidc_provider_name>Copy the OIDC provider name
<oidc_provider_name>from the output to use in the next step. -
Use the
ccoctltool to process the credentials request by running the following command:$ ccoctl aws create-iam-roles \ --name my-role --region=<aws_region> \ --credentials-requests-dir=<aws_creds_dir_name> \ --identity-provider-arn arn:aws:iam::<aws_account_id>:oidc-provider/<oidc_provider_name> --output-dir=<output_dir_name>Example output2023/05/15 18:10:34 Role arn:aws:iam::<aws_account_id>:role/my-role-my-namespace-aws-creds created 2023/05/15 18:10:34 Saved credentials configuration to: credrequests-ccoctl-output/manifests/my-namespace-aws-creds-credentials.yaml 2023/05/15 18:10:35 Updated Role policy for Role my-role-my-namespace-aws-credsCopy the
<aws_role_arn>from the output to use in the next step. For example,arn:aws:iam::<aws_account_id>:role/my-role-my-namespace-aws-creds. -
Bind the service account with the role ARN by running the following command:
$ oc annotate -n my-namespace sa/aws-provider eks.amazonaws.com/role-arn="<aws_role_arn>"
-
-
Create a secret provider class to define your secrets store provider:
-
Create a YAML file that defines the
SecretProviderClassobject:Examplesecret-provider-class-aws.yamlapiVersion: secrets-store.csi.x-k8s.io/v1 kind: SecretProviderClass metadata: name: my-aws-provider namespace: my-namespace spec: provider: aws parameters:where:
metadata.name-
Specifies the name for the secret provider class.
metadata.namespace-
Specifies the namespace for the secret provider class.
spec.provider-
Specifies the provider as
aws. spec.parameters-
Specifies the provider-specific configuration parameters.
-
Create the
SecretProviderClassobject by running the following command:$ oc create -f secret-provider-class-aws.yaml
-
-
Create a deployment to use this secret provider class:
-
Create a YAML file that defines the
Deploymentobject:Exampledeployment.yamlapiVersion: apps/v1 kind: Deployment metadata: name: my-aws-deployment namespace: my-namespace spec: replicas: 1 selector: matchLabels: app: my-storage template: metadata: labels: app: my-storage spec: serviceAccountName: aws-provider containers: - name: busybox image: k8s.gcr.io/e2e-test-images/busybox:1.29 command: - "/bin/sleep" - "10000" volumeMounts: - name: secrets-store-inline mountPath: "/mnt/secrets-store" readOnly: true volumes: - name: secrets-store-inline csi: driver: secrets-store.csi.k8s.io readOnly: true volumeAttributes: secretProviderClass: "my-aws-provider"where:
metadata.name-
Specifies the name for the deployment.
metadata.namespace-
Specifies the namespace for the deployment. This must be the same namespace as the secret provider class.
spec.template.spec.volumes.csi.volumeAttributes.secretProviderClass-
Specifies the name of the secret provider class.
-
Create the
Deploymentobject by running the following command:$ oc create -f deployment.yaml
-
-
Verify that you can access the secrets from {secrets-store-provider} in the pod volume mount:
-
List the secrets in the pod mount by running the following command:
$ oc exec my-aws-deployment-<hash> -n my-namespace -- ls /mnt/secrets-store/Example output -
View a secret in the pod mount by running the following command:
$ oc exec my-aws-deployment-<hash> -n my-namespace -- cat /mnt/secrets-store/testSecretExample output<secret_value>
-
Mounting secrets from Azure Key Vault
You can use the Secrets Store CSI Driver Operator to mount secrets from Microsoft Azure Key Vault to a Container Storage Interface (CSI) volume in Red Hat OpenShift Container Platform. Using an external secret store protects information that you do not want developers to have and can be more secure than secret objects.
-
Your have installed a cluster on Azure.
-
You have access to the cluster as a user with the
cluster-adminrole. -
You have installed the Azure CLI (
az). -
You have installed the Secrets Store CSI Driver Operator. See "Installing the Secrets Store CSI driver" for instructions.
-
You have configured Azure Key Vault to store the required secrets.
-
Install the Azure Key Vault provider:
-
Create a YAML file named
azure-provider.yamlthat defines theServiceAccountresource configuration. See the following example configuration:The Azure Key Vault provider for the Secrets Store CSI driver is an upstream provider.
This configuration is modified from the configuration provided in the upstream Azure documentation so that it works properly with Red Hat OpenShift Container Platform. Changes to this configuration might impact functionality.
Exampleazure-provider.yamlfileapiVersion: v1 kind: ServiceAccount metadata: name: csi-secrets-store-provider-azure namespace: openshift-cluster-csi-drivers --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: csi-secrets-store-provider-azure-cluster-role rules: - apiGroups: [""] resources: ["serviceaccounts/token"] verbs: ["create"] - apiGroups: [""] resources: ["serviceaccounts"] verbs: ["get"] - apiGroups: [""] resources: ["pods"] verbs: ["get"] - apiGroups: [""] resources: ["nodes"] verbs: ["get"] --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: csi-secrets-store-provider-azure-cluster-rolebinding roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: csi-secrets-store-provider-azure-cluster-role subjects: - kind: ServiceAccount name: csi-secrets-store-provider-azure namespace: openshift-cluster-csi-drivers --- apiVersion: apps/v1 kind: DaemonSet metadata: namespace: openshift-cluster-csi-drivers name: csi-secrets-store-provider-azure labels: app: csi-secrets-store-provider-azure spec: updateStrategy: type: RollingUpdate selector: matchLabels: app: csi-secrets-store-provider-azure template: metadata: labels: app: csi-secrets-store-provider-azure spec: serviceAccountName: csi-secrets-store-provider-azure hostNetwork: true containers: - name: provider-azure-installer image: mcr.microsoft.com/oss/azure/secrets-store/provider-azure:v1.4.1 imagePullPolicy: IfNotPresent args: - --endpoint=unix:///provider/azure.sock - --construct-pem-chain=true - --healthz-port=8989 - --healthz-path=/healthz - --healthz-timeout=5s livenessProbe: httpGet: path: /healthz port: 8989 failureThreshold: 3 initialDelaySeconds: 5 timeoutSeconds: 10 periodSeconds: 30 resources: requests: cpu: 50m memory: 100Mi limits: cpu: 50m memory: 100Mi securityContext: allowPrivilegeEscalation: false readOnlyRootFilesystem: true runAsUser: 0 capabilities: drop: - ALL volumeMounts: - mountPath: "/provider" name: providervol affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - key: type operator: NotIn values: - virtual-kubelet volumes: - name: providervol hostPath: path: "/var/run/secrets-store-csi-providers" tolerations: - operator: Exists nodeSelector: kubernetes.io/os: linux -
Grant privileged access to the
csi-secrets-store-provider-azureservice account by running the following command:$ oc adm policy add-scc-to-user privileged -z csi-secrets-store-provider-azure -n openshift-cluster-csi-drivers -
Create the provider resources by running the following command:
$ oc apply -f azure-provider.yaml
-
-
Create a service principal to access the key vault:
-
Set the service principal client secret as an environment variable by running the following command:
$ SERVICE_PRINCIPAL_CLIENT_SECRET="$(az ad sp create-for-rbac --name https://$KEYVAULT_NAME --query 'password' -otsv)" -
Set the service principal client ID as an environment variable by running the following command:
$ SERVICE_PRINCIPAL_CLIENT_ID="$(az ad sp list --display-name https://$KEYVAULT_NAME --query '[0].appId' -otsv)" -
Create a generic secret with the service principal client secret and ID by running the following command:
$ oc create secret generic secrets-store-creds -n my-namespace --from-literal clientid=${SERVICE_PRINCIPAL_CLIENT_ID} --from-literal clientsecret=${SERVICE_PRINCIPAL_CLIENT_SECRET} -
Apply the
secrets-store.csi.k8s.io/used=truelabel to allow the provider to find thisnodePublishSecretRefsecret:$ oc -n my-namespace label secret secrets-store-creds secrets-store.csi.k8s.io/used=true
-
-
Create a secret provider class to define your secrets store provider:
-
Create a YAML file that defines the
SecretProviderClassobject:Examplesecret-provider-class-azure.yamlapiVersion: secrets-store.csi.x-k8s.io/v1 kind: SecretProviderClass metadata: name: my-azure-provider namespace: my-namespace spec: provider: azure parameters: usePodIdentity: "false" useVMManagedIdentity: "false" userAssignedIdentityID: "" keyvaultName: "kvname" objects: | array: - | objectName: secret1 objectType: secret tenantId: "tid"where:
metadata.name-
Specifies the name for the secret provider class.
metadata.namespace-
Specifies the namespace for the secret provider class.
spec.provider-
Specifies the provider as
azure. spec.parameters-
Specifies the provider-specific configuration parameters.
-
Create the
SecretProviderClassobject by running the following command:$ oc create -f secret-provider-class-azure.yaml
-
-
Create a deployment to use this secret provider class:
-
Create a YAML file that defines the
Deploymentobject:Exampledeployment.yamlapiVersion: apps/v1 kind: Deployment metadata: name: my-azure-deployment namespace: my-namespace spec: replicas: 1 selector: matchLabels: app: my-storage template: metadata: labels: app: my-storage spec: containers: - name: busybox image: k8s.gcr.io/e2e-test-images/busybox:1.29 command: - "/bin/sleep" - "10000" volumeMounts: - name: secrets-store-inline mountPath: "/mnt/secrets-store" readOnly: true volumes: - name: secrets-store-inline csi: driver: secrets-store.csi.k8s.io readOnly: true volumeAttributes: secretProviderClass: "my-azure-provider" nodePublishSecretRef: name: secrets-store-credswhere:
metadata.name-
Specifies the name for the deployment.
metadata.namespace-
Specifies the namespace for the deployment. This must be the same namespace as the secret provider class.
spec.template.spec.volumes.csi.volumeAttributes.secretProviderClass-
Specifies the name of the secret provider class.
spec.template.spec.volumes.csi.nodePublishSecretRef.name-
Specifies the name of the Kubernetes secret that contains the service principal credentials to access Azure Key Vault.
-
Create the
Deploymentobject by running the following command:$ oc create -f deployment.yaml
-
-
Verify that you can access the secrets from Azure Key Vault in the pod volume mount:
-
List the secrets in the pod mount by running the following command:
$ oc exec my-azure-deployment-<hash> -n my-namespace -- ls /mnt/secrets-store/Example outputsecret1 -
View a secret in the pod mount by running the following command:
$ oc exec my-azure-deployment-<hash> -n my-namespace -- cat /mnt/secrets-store/secret1Example outputmy-secret-value
-
Mounting secrets from Google Secret Manager
You can use the Secrets Store CSI Driver Operator to mount secrets from Google Secret Manager to a Container Storage Interface (CSI) volume in Red Hat OpenShift Container Platform. Using an external secret store protects information that you do not want developers to have and can be more secure than secret objects.
-
Your have installed a cluster on Google Cloud.
-
You have access to the cluster as a user with the
cluster-adminrole. -
You have installed the Secrets Store CSI Driver Operator. See "Installing the Secrets Store CSI driver" for instructions.
-
You have configured Google Secret Manager to store the required secrets.
-
You have created a service account key named
key.jsonfrom your Google Cloud service account.
-
Install the Google Secret Manager provider:
-
Create a YAML file Create a YAML file named
gcp-provider.yamlthat defines theServiceAccountresource configuration. See the following example configuration:Examplegcp-provider.yamlfileapiVersion: v1 kind: ServiceAccount metadata: name: csi-secrets-store-provider-gcp namespace: openshift-cluster-csi-drivers --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: csi-secrets-store-provider-gcp-rolebinding roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: csi-secrets-store-provider-gcp-role subjects: - kind: ServiceAccount name: csi-secrets-store-provider-gcp namespace: openshift-cluster-csi-drivers --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: csi-secrets-store-provider-gcp-role rules: - apiGroups: - "" resources: - serviceaccounts/token verbs: - create - apiGroups: - "" resources: - serviceaccounts verbs: - get --- apiVersion: apps/v1 kind: DaemonSet metadata: name: csi-secrets-store-provider-gcp namespace: openshift-cluster-csi-drivers labels: app: csi-secrets-store-provider-gcp spec: updateStrategy: type: RollingUpdate selector: matchLabels: app: csi-secrets-store-provider-gcp template: metadata: labels: app: csi-secrets-store-provider-gcp spec: serviceAccountName: csi-secrets-store-provider-gcp initContainers: - name: chown-provider-mount image: busybox command: - chown - "1000:1000" - /etc/kubernetes/secrets-store-csi-providers volumeMounts: - mountPath: "/etc/kubernetes/secrets-store-csi-providers" name: providervol securityContext: privileged: true hostNetwork: false hostPID: false hostIPC: false containers: - name: provider image: us-docker.pkg.dev/secretmanager-csi/secrets-store-csi-driver-provider-gcp/plugin@sha256:a493a78bbb4ebce5f5de15acdccc6f4d19486eae9aa4fa529bb60ac112dd6650 securityContext: privileged: true imagePullPolicy: IfNotPresent resources: requests: cpu: 50m memory: 100Mi limits: cpu: 50m memory: 100Mi env: - name: TARGET_DIR value: "/etc/kubernetes/secrets-store-csi-providers" volumeMounts: - mountPath: "/etc/kubernetes/secrets-store-csi-providers" name: providervol mountPropagation: None readOnly: false livenessProbe: failureThreshold: 3 httpGet: path: /live port: 8095 initialDelaySeconds: 5 timeoutSeconds: 10 periodSeconds: 30 volumes: - name: providervol hostPath: path: /etc/kubernetes/secrets-store-csi-providers tolerations: - key: kubernetes.io/arch operator: Equal value: amd64 effect: NoSchedule nodeSelector: kubernetes.io/os: linux -
Grant privileged access to the
csi-secrets-store-provider-gcpservice account by running the following command:$ oc adm policy add-scc-to-user privileged -z csi-secrets-store-provider-gcp -n openshift-cluster-csi-drivers -
Create the provider resources by running the following command:
$ oc apply -f gcp-provider.yaml
-
-
Grant a read permission to the Google Secret Manager secret:
-
Create a new project by running the following command:
$ oc new-project my-namespace -
Label the
my-namespacenamespace for pod security admission by running the following command:$ oc label ns my-namespace security.openshift.io/scc.podSecurityLabelSync=false pod-security.kubernetes.io/enforce=privileged pod-security.kubernetes.io/audit=privileged pod-security.kubernetes.io/warn=privileged --overwrite -
Create a service account for the pod deployment:
$ oc create serviceaccount my-service-account --namespace=my-namespace -
Create a generic secret from the
key.jsonfile by running the following command:$ oc create secret generic secrets-store-creds -n my-namespace --from-file=key.jsonYou created this
key.jsonfile from the Google Secret Manager. -
Apply the
secrets-store.csi.k8s.io/used=truelabel to allow the provider to find thisnodePublishSecretRefsecret:$ oc -n my-namespace label secret secrets-store-creds secrets-store.csi.k8s.io/used=true
-
-
Create a secret provider class to define your secrets store provider:
-
Create a YAML file that defines the
SecretProviderClassobject:Examplesecret-provider-class-gcp.yamlapiVersion: secrets-store.csi.x-k8s.io/v1 kind: SecretProviderClass metadata: name: my-gcp-provider namespace: my-namespace spec: provider: gcp parameters: secrets: | - resourceName: "projects/my-project/secrets/testsecret1/versions/1" path: "testsecret1.txt"where:
metadata.name-
Specifies the name for the secret provider class.
metadata.namespace-
Specifies the namespace for the secret provider class.
spec.provider-
Specifies the provider as
gcp. spec.parameters-
Specifies the provider-specific configuration parameters.
-
Create the
SecretProviderClassobject by running the following command:$ oc create -f secret-provider-class-gcp.yaml
-
-
Create a deployment to use this secret provider class:
-
Create a YAML file that defines the
Deploymentobject:Exampledeployment.yamlapiVersion: apps/v1 kind: Deployment metadata: name: my-gcp-deployment namespace: my-namespace spec: replicas: 1 selector: matchLabels: app: my-storage template: metadata: labels: app: my-storage spec: serviceAccountName: my-service-account containers: - name: busybox image: k8s.gcr.io/e2e-test-images/busybox:1.29 command: - "/bin/sleep" - "10000" volumeMounts: - name: secrets-store-inline mountPath: "/mnt/secrets-store" readOnly: true volumes: - name: secrets-store-inline csi: driver: secrets-store.csi.k8s.io readOnly: true volumeAttributes: secretProviderClass: "my-gcp-provider" nodePublishSecretRef: name: secrets-store-credswhere:
metadata.name-
Specifies the name for the deployment.
metadata.namespace-
Specifies the namespace for the deployment. This must be the same namespace as the secret provider class.
spec.template.spec.serviceAccountName-
Specifies the service account you created.
spec.template.spec.volumes.csi.volumeAttributes.secretProviderClass-
Specifies the name of the secret provider class.
spec.template.spec.volumes.csi.nodePublishSecretRef.name-
Specifies the name of the Kubernetes secret that contains the service principal credentials to access Google Secret Manager.
-
Create the
Deploymentobject by running the following command:$ oc create -f deployment.yaml
-
-
Verify that you can access the secrets from Google Secret Manager in the pod volume mount:
-
List the secrets in the pod mount by running the following command:
$ oc exec my-gcp-deployment-<hash> -n my-namespace -- ls /mnt/secrets-store/Example outputtestsecret1 -
View a secret in the pod mount by running the following command:
$ oc exec my-gcp-deployment-<hash> -n my-namespace -- cat /mnt/secrets-store/testsecret1Example output<secret_value>
-
Mounting secrets from HashiCorp Vault
You can use the Secrets Store CSI Driver Operator to mount secrets from HashiCorp Vault to a Container Storage Interface (CSI) volume in Red Hat OpenShift Container Platform. Using an external secret store protects information that you do not want developers to have and can be more secure than secret objects.
|
|
Mounting secrets from HashiCorp Vault by using the Secrets Store CSI Driver Operator has been tested with the following cloud providers:
Other cloud providers might work, but have not been tested yet. Additional cloud providers might be tested in the future. |
-
You have access to the cluster as a user with the
cluster-adminrole. -
You have installed the Secrets Store CSI Driver Operator. See "Installing the Secrets Store CSI driver" for instructions.
-
You have installed Helm.
-
Add the HashiCorp Helm repository by running the following command:
$ helm repo add hashicorp https://helm.releases.hashicorp.com -
Update all repositories to ensure that Helm is aware of the latest versions by running the following command:
$ helm repo update -
Install the HashiCorp Vault provider:
-
Create a new project for Vault by running the following command:
$ oc new-project vault -
Label the
vaultnamespace for pod security admission by running the following command:$ oc label ns vault security.openshift.io/scc.podSecurityLabelSync=false pod-security.kubernetes.io/enforce=privileged pod-security.kubernetes.io/audit=privileged pod-security.kubernetes.io/warn=privileged --overwrite -
Grant privileged access to the
vaultservice account by running the following command:$ oc adm policy add-scc-to-user privileged -z vault -n vault -
Grant privileged access to the
vault-csi-providerservice account by running the following command:$ oc adm policy add-scc-to-user privileged -z vault-csi-provider -n vault -
If you are using IBM Z, create a
vault-licensesecret for HashiCorp Vault Enterprise:-
Create a
vault-license.yamlfile with the following content:apiVersion: v1 data: license: <license-string> kind: Secret metadata: name: vault-license namespace: vault type: Opaque -
Create the secret by running the following command:
$ oc create -f vault-license.yaml
-
-
Deploy HashiCorp Vault by running the following command:
$ helm install vault hashicorp/vault --namespace=vault \ --set "server.dev.enabled=true" \ --set "injector.enabled=false" \ --set "csi.enabled=true" \ --set "global.openshift=true" \ --set "injector.agentImage.repository=docker.io/hashicorp/vault" \ --set "server.image.repository=docker.io/hashicorp/vault" \ --set "csi.image.repository=docker.io/hashicorp/vault-csi-provider" \ --set "csi.agent.image.repository=docker.io/hashicorp/vault" \ --set "csi.daemonSet.providersDir=/var/run/secrets-store-csi-providers"If you are using IBM Z, you must use Vault Enterprise images and the Vault license secret. Run the following command instead:
$ helm install vault hashicorp/vault \ --namespace vault \ --create-namespace \ --set server.dev.enabled=true \ --set server.image.repository="docker.io/hashicorp/vault-enterprise" \ --set server.image.tag="1.21-ent" \ --set server.enterpriseLicense.secretName="vault-license" \ --set server.logLevel=debug \ --set server.serviceAccount.name="vault" \ --set "injector.enabled=false" \ --set global.openshift=true \ --set csi.enabled=true \ --set "csi.daemonSet.providersDir=/var/run/secrets-store-csi-providers" \ --set csi.image.repository="registry.connect.redhat.com/hashicorp/vault-csi-provider" \ --set csi.image.tag="1.7.1-ubi" \ --set csi.agent.enabled=false -
Patch the
vault-csi-driverdaemon set to set thesecurityContexttoprivilegedby running the following command:$ oc patch daemonset -n vault vault-csi-provider --type='json' -p='[{"op": "add", "path": "/spec/template/spec/containers/0/securityContext", "value": {"privileged": true} }]' -
Verify that the
vault-csi-providerpods have started properly by running the following command:$ oc get pods -n vaultExample outputNAME READY STATUS RESTARTS AGE vault-0 1/1 Running 0 24m vault-csi-provider-87rgw 1/2 Running 0 5s vault-csi-provider-bd6hp 1/2 Running 0 4s vault-csi-provider-smlv7 1/2 Running 0 5s
-
-
Configure HashiCorp Vault to store the required secrets:
-
Create a secret by running the following command:
$ oc exec vault-0 --namespace=vault -- vault kv put secret/example1 testSecret1=my-secret-value -
Verify that the secret is readable at the path
secret/example1by running the following command:$ oc exec vault-0 --namespace=vault -- vault kv get secret/example1Example output= Secret Path = secret/data/example1 ======= Metadata ======= Key Value --- ----- created_time 2024-04-05T07:05:16.713911211Z custom_metadata <nil> deletion_time n/a destroyed false version 1 ======= Data ======= Key Value --- ----- testSecret1 my-secret-value
-
-
Configure Vault to use Kubernetes authentication:
-
Enable the Kubernetes auth method by running the following command:
$ oc exec vault-0 --namespace=vault -- vault auth enable kubernetesExample outputSuccess! Enabled kubernetes auth method at: kubernetes/ -
Configure the Kubernetes auth method:
-
Set the token reviewer as an environment variable by running the following command:
$ TOKEN_REVIEWER_JWT="$(oc exec vault-0 --namespace=vault -- cat /var/run/secrets/kubernetes.io/serviceaccount/token)" -
Set the Kubernetes service IP address as an environment variable by running the following command:
$ KUBERNETES_SERVICE_IP="$(oc get svc kubernetes --namespace=default -o go-template="{{ .spec.clusterIP }}")" -
Update the Kubernetes auth method by running the following command:
$ oc exec -i vault-0 --namespace=vault -- vault write auth/kubernetes/config \ issuer="https://kubernetes.default.svc.cluster.local" \ token_reviewer_jwt="${TOKEN_REVIEWER_JWT}" \ kubernetes_host="https://${KUBERNETES_SERVICE_IP}:443" \ kubernetes_ca_cert=@/var/run/secrets/kubernetes.io/serviceaccount/ca.crtExample outputSuccess! Data written to: auth/kubernetes/config
-
-
Create a policy for the application by running the following command:
$ oc exec -i vault-0 --namespace=vault -- vault policy write csi -<<EOF path "secret/data/*" { capabilities = ["read"] } EOFExample outputSuccess! Uploaded policy: csi -
Create an authentication role to access the application by running the following command:
$ oc exec -i vault-0 --namespace=vault -- vault write auth/kubernetes/role/csi \ bound_service_account_names=default \ bound_service_account_namespaces=default,test-ns,negative-test-ns,my-namespace \ policies=csi \ ttl=20mExample outputSuccess! Data written to: auth/kubernetes/role/csi
-
-
Create a secret provider class to define your secrets store provider:
-
Create a YAML file that defines the
SecretProviderClassobject:Examplesecret-provider-class-vault.yamlapiVersion: secrets-store.csi.x-k8s.io/v1 kind: SecretProviderClass metadata: name: my-vault-provider namespace: my-namespace spec: provider: vault parameters: roleName: "csi" vaultAddress: "http://vault.vault:8200" objects: | - secretPath: "secret/data/example1" objectName: "testSecret1" secretKey: "testSecret1"where:
metadata.name-
Specifies the name for the secret provider class.
metadata.namespace-
Specifies the namespace for the secret provider class.
spec.provider-
Specifies the provider as
vault. spec.parameters-
Specifies the provider-specific configuration parameters.
-
Create the
SecretProviderClassobject by running the following command:$ oc create -f secret-provider-class-vault.yaml
-
-
Create a deployment to use this secret provider class:
-
Create a YAML file that defines the
Deploymentobject:Exampledeployment.yamlapiVersion: apps/v1 kind: Deployment metadata: name: busybox-deployment namespace: my-namespace labels: app: busybox spec: replicas: 1 selector: matchLabels: app: busybox template: metadata: labels: app: busybox spec: terminationGracePeriodSeconds: 0 containers: - image: registry.k8s.io/e2e-test-images/busybox:1.29-4 name: busybox imagePullPolicy: IfNotPresent command: - "/bin/sleep" - "10000" volumeMounts: - name: secrets-store-inline mountPath: "/mnt/secrets-store" readOnly: true volumes: - name: secrets-store-inline csi: driver: secrets-store.csi.k8s.io readOnly: true volumeAttributes: secretProviderClass: "my-vault-provider"where:
metadata.name-
Specifies the name for the deployment.
metadata.namespace-
Specifies the namespace for the deployment. This must be the same namespace as the secret provider class.
spec.template.spec.volumes.csi.volumeAttributes.secretProviderClass-
Specifies the name of the secret provider class.
-
Create the
Deploymentobject by running the following command:$ oc create -f deployment.yaml
-
-
Verify that all of the
vaultpods are running properly by running the following command:$ oc get pods -n vaultExample outputNAME READY STATUS RESTARTS AGE vault-0 1/1 Running 0 43m vault-csi-provider-87rgw 2/2 Running 0 19m vault-csi-provider-bd6hp 2/2 Running 0 19m vault-csi-provider-smlv7 2/2 Running 0 19m -
Verify that all of the
secrets-store-csi-driverpods are running by running the following command:$ oc get pods -n openshift-cluster-csi-drivers | grep -E "secrets"Example outputsecrets-store-csi-driver-node-46d2g 3/3 Running 0 45m secrets-store-csi-driver-node-d2jjn 3/3 Running 0 45m secrets-store-csi-driver-node-drmt4 3/3 Running 0 45m secrets-store-csi-driver-node-j2wlt 3/3 Running 0 45m secrets-store-csi-driver-node-v9xv4 3/3 Running 0 45m secrets-store-csi-driver-node-vlz28 3/3 Running 0 45m secrets-store-csi-driver-operator-84bd699478-fpxrw 1/1 Running 0 47m -
Verify that you can access the secrets from your HashiCorp Vault in the pod volume mount:
-
List the secrets in the pod mount by running the following command:
$ oc exec busybox-deployment-<hash> -n my-namespace -- ls /mnt/secrets-store/Example outputtestSecret1 -
View a secret in the pod mount by running the following command:
$ oc exec busybox-deployment-<hash> -n my-namespace -- cat /mnt/secrets-store/testSecret1Example outputmy-secret-value
-