mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-22 22:30:23 +00:00
d941e5abac
parseTenantConfig() only allowed configuring a defined set of options, and KMSs were not able to re-use the implementation. Now, the function parses the ConfigMap from the Tenants Namespace and returns a map with options that the KMS supports. The map that parseTenantConfig() returns can be inspected by the KMS, and applied to the vaultTenantConnection type by calling parseConfig(). Signed-off-by: Niels de Vos <ndevos@redhat.com>
24 lines
551 B
YAML
24 lines
551 B
YAML
---
|
|
#
|
|
# The ServiceAccount "ceph-csi-vault-sa" should be created in the Namespace of
|
|
# the tenant that will be creating encrypted PVCs with a "vaulttenantsa" KMS
|
|
# provider.
|
|
#
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
name: ceph-csi-vault-sa
|
|
---
|
|
#
|
|
# Each tenant most likely has their own VAULT_BACKEND_PATH or other
|
|
# configuration options. In this example, the tenant has its own key-value
|
|
# store at "tenant".
|
|
#
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: ceph-csi-kms-config
|
|
data:
|
|
vaultBackendPath: tenant
|
|
vaultRole: ceph-csi-tenant
|