From 8c9c92cff9569fcdfd26e81396709a1116b1ef4a Mon Sep 17 00:00:00 2001 From: Gyuho Lee Date: Tue, 21 Apr 2020 19:40:22 -0700 Subject: [PATCH] docs/README: add missing "--namespace" flag to "helm" command Signed-off-by: Gyuho Lee --- docs/README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index cda321763e..bc895445ab 100644 --- a/docs/README.md +++ b/docs/README.md @@ -114,7 +114,9 @@ kubectl get pods -n kube-system Alternatively, you could also install the driver using helm: ```sh -helm install --name aws-ebs-csi-driver \ +helm install \ + --namespace kube-system \ + --name aws-ebs-csi-driver \ --set enableVolumeScheduling=true \ --set enableVolumeResizing=true \ --set enableVolumeSnapshot=true \