From 24f5240726ec67f2ca9bcea5b8d7bde7fe1bd273 Mon Sep 17 00:00:00 2001 From: Andy Zhang Date: Mon, 12 Apr 2021 11:36:26 +0800 Subject: [PATCH] Update csi-dev.md --- docs/csi-dev.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/csi-dev.md b/docs/csi-dev.md index 387f313f..7cf07422 100644 --- a/docs/csi-dev.md +++ b/docs/csi-dev.md @@ -16,6 +16,11 @@ $ make - Run verification test before submitting code ```console $ make verify +``` + + - If there is config file changed under `charts` directory, run following command to update chart file +```console +helm package charts/latest/csi-driver-nfs -d charts/latest/ ``` ## How to test CSI driver in local environment @@ -65,7 +70,7 @@ $ csc node publish --endpoint "$endpoint" --cap "$cap" --vol-context "$params" - ``` #### 4. Unpublish a nfs volume -``` +```console $ csc node unpublish --endpoint "$endpoint" --target-path "$target_path" "$volumeid" ```