From dec74a534f69d9e54595961e08f4b5080286ee87 Mon Sep 17 00:00:00 2001 From: Rakshith R Date: Mon, 7 Mar 2022 16:01:49 +0530 Subject: [PATCH] doc: add step to create `ceph-conf` cm to deploy plugin Ceph-csi requires `ceph-config` configmap when deploying. Add this step to `examples/README.md`. Fixes: #2918 Signed-off-by: Rakshith R --- examples/README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/README.md b/examples/README.md index a5c719ac0..674e26c57 100644 --- a/examples/README.md +++ b/examples/README.md @@ -2,6 +2,12 @@ ## Deploying Ceph-CSI services +Create [ceph-config](./ceph-conf.yaml) configmap using the following command. + +```bash +kubectl apply -f ./ceph-conf.yaml +``` + Both `rbd` and `cephfs` directories contain `plugin-deploy.sh` and `plugin-teardown.sh` helper scripts. You can use those to help you deploy/teardown RBACs, sidecar containers and the plugin in one go.