You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by si...@apache.org on 2020/05/14 08:09:31 UTC

[pulsar] branch master updated: Fix helm timeout argument (#6949)

This is an automated email from the ASF dual-hosted git repository.

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new c65c809  Fix helm timeout argument (#6949)
c65c809 is described below

commit c65c8099e18236586edc0eafdff595e7ab376997
Author: Luke Stephenson <48...@users.noreply.github.com>
AuthorDate: Thu May 14 18:09:18 2020 +1000

    Fix helm timeout argument (#6949)
    
    Without this I got `Error: invalid argument "600" for "--timeout" flag: time: missing unit in duration 600`
---
 site2/docs/helm-deploy.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/site2/docs/helm-deploy.md b/site2/docs/helm-deploy.md
index 423a5d5..7e045e5 100644
--- a/site2/docs/helm-deploy.md
+++ b/site2/docs/helm-deploy.md
@@ -357,7 +357,7 @@ In this example, we've named our Helm release `pulsar`.
 git clone https://github.com/apache/pulsar
 cd pulsar/deployment/kubernetes/helm
 helm upgrade --install pulsar pulsar \
-    --timeout 600 \
+    --timeout 10m \
     --set [your configuration options]
 ```