mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
0c33a33d5c
The Key Management Interoperability Protocol (KMIP) is an extensible communication protocol that defines message formats for the manipulation of cryptographic keys on a key management server. Ceph-CSI can now be configured to connect to various KMS using KMIP for encrypting RBD volumes. https://en.wikipedia.org/wiki/Key_Management_Interoperability_Protocol Signed-off-by: Rakshith R <rar@redhat.com>
14 lines
355 B
YAML
14 lines
355 B
YAML
---
|
|
# This is an example Kubernetes Secret that can be created in the Kubernetes
|
|
# Namespace where Ceph-CSI is deployed. The contents of this Secret will be
|
|
# used to connect to the KMS using KMIP.
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: ceph-csi-kmip-credentials
|
|
stringData:
|
|
CA_CERT: ""
|
|
CLIENT_CERT: ""
|
|
CLIENT_KEY: ""
|
|
UNIQUE_IDENTIFIER: ""
|