You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2023/03/26 10:18:41 UTC

[skywalking-showcase] branch main updated: Add longer timeout for helm command

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

kezhenxu94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-showcase.git


The following commit(s) were added to refs/heads/main by this push:
     new c22ce1d  Add longer timeout for helm command
c22ce1d is described below

commit c22ce1d541cf1f97c28e30b17dc1f534ce46e806
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Sun Mar 26 18:18:33 2023 +0800

    Add longer timeout for helm command
---
 deploy/platform/kubernetes/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deploy/platform/kubernetes/Makefile b/deploy/platform/kubernetes/Makefile
index 2ec4914..b4f1fb9 100644
--- a/deploy/platform/kubernetes/Makefile
+++ b/deploy/platform/kubernetes/Makefile
@@ -149,7 +149,7 @@ feature-mesh-with-agent:
 .PHONY: deploy
 deploy: $(features)
 	helm dep up .
-	helm -n $(NAMESPACE) upgrade --install $(RELEASE) . --create-namespace $(HELM_OPTIONS)
+	helm -n $(NAMESPACE) upgrade --install $(RELEASE) . --create-namespace --timeout=20m $(HELM_OPTIONS)
 
 	$(info rollout restart to allow the new sidecar to be injected.)
 	kubectl -n $(SAMPLE_SERVICES_NAMESPACE) get deployments -o name | xargs kubectl -n $(SAMPLE_SERVICES_NAMESPACE) rollout restart