From f590d30fdc7af6ec1198e9a234e05de3017644b4 Mon Sep 17 00:00:00 2001 From: ethfoo Date: Wed, 2 Nov 2022 16:23:54 +0800 Subject: [PATCH] Update kubernetes.md (#105) --- docs/getting-started/quick-start/kubernetes.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/quick-start/kubernetes.md b/docs/getting-started/quick-start/kubernetes.md index 79fe6d9..ac7b3a5 100644 --- a/docs/getting-started/quick-start/kubernetes.md +++ b/docs/getting-started/quick-start/kubernetes.md @@ -22,7 +22,8 @@ #### 下载chart再部署 ```bash -helm pull https://github.com/loggie-io/installation/releases/download//loggie-.tgz && tar xvzf loggie-.tgz +VERSION=v1.3.0 +helm pull https://github.com/loggie-io/installation/releases/download/${VERSION}/loggie-${VERSION}.tgz && tar xvzf loggie-${VERSION}.tgz ``` 尝试修改一下其中的values.yaml。 请将以上的``替换成具体的版本号。 @@ -37,7 +38,7 @@ helm install loggie ./loggie -nloggie --create-namespace #### 直接部署: ```bash -helm install loggie -nloggie --create-namespace https://github.com/loggie-io/installation/releases/download//loggie-.tgz +helm install loggie -nloggie --create-namespace https://github.com/loggie-io/installation/releases/download/${VERSION}/loggie-${VERSION}.tgz ``` 请将以上的``替换成具体的版本号。