$ kubectl apply -f csi-kms-config-map.yaml
+Recent versions of `ceph-csi` also require yet another `ConfigMap` object
+to define Ceph configuration to add to ceph.conf file inside CSI containers::
+
+ $ cat <<EOF > ceph-config-map.yaml
+ ---
+ apiVersion: v1
+ kind: ConfigMap
+ data:
+ ceph.conf: |
+ [global]
+ auth_cluster_required = cephx
+ auth_service_required = cephx
+ auth_client_required = cephx
+ # keyring is a required key and its value should be empty
+ keyring: |
+ metadata:
+ name: ceph-config
+ EOF
+
+Once generated, store the new `ConfigMap` object in Kubernetes::
+
+ $ kubectl apply -f ceph-config-map.yaml
+
Generate `ceph-csi` cephx `Secret`
----------------------------------