From d80427775b49f84f34ca0e524466ae037fb8992b Mon Sep 17 00:00:00 2001 From: ethfoo Date: Tue, 7 Mar 2023 14:58:17 +0800 Subject: [PATCH] Feat: upgrade loggie version to v1.4.0 (#154) --- docs/getting-started/install/kubernetes.md | 4 ++-- docs/getting-started/install/node.md | 2 +- docs/getting-started/quick-start/kubernetes.md | 2 +- docs/getting-started/quick-start/node.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/getting-started/install/kubernetes.md b/docs/getting-started/install/kubernetes.md index 973d946..814662c 100644 --- a/docs/getting-started/install/kubernetes.md +++ b/docs/getting-started/install/kubernetes.md @@ -10,10 +10,10 @@ ### 下载helm-chart包 ```bash -VERSION=v1.4.0-rc.0 +VERSION=v1.4.0 helm pull https://github.com/loggie-io/installation/releases/download/$VERSION/loggie-$VERSION.tgz && tar xvzf loggie-$VERSION.tgz ``` -请将以上的``替换成具体的版本号。比如v1.4.0-rc.0。 可从[release tag](https://github.com/loggie-io/loggie/tags)里找。 +请将以上的``替换成具体的版本号。比如v1.4.0。 可从[release tag](https://github.com/loggie-io/loggie/tags)里找。 ### 修改配置 进入chart目录: diff --git a/docs/getting-started/install/node.md b/docs/getting-started/install/node.md index ca84dd5..6d355b1 100644 --- a/docs/getting-started/install/node.md +++ b/docs/getting-started/install/node.md @@ -13,7 +13,7 @@ Loggie使用Golang编译成二进制,可根据自身需求对接各类部署 ## 下载二进制 ``` -VERSION=v1.4.0-rc.0 +VERSION=v1.4.0 mkdir /opt/loggie && curl https://github.com/loggie-io/loggie/releases/download/$VERSION/loggie -o /opt/loggie/loggie && chmod +x /opt/loggie/loggie ``` diff --git a/docs/getting-started/quick-start/kubernetes.md b/docs/getting-started/quick-start/kubernetes.md index aac8e34..01b6757 100644 --- a/docs/getting-started/quick-start/kubernetes.md +++ b/docs/getting-started/quick-start/kubernetes.md @@ -22,7 +22,7 @@ #### 下载chart再部署 ```bash -VERSION=v1.4.0-rc.0 +VERSION=v1.4.0 helm pull https://github.com/loggie-io/installation/releases/download/$VERSION/loggie-$VERSION.tgz && tar xvzf loggie-$VERSION.tgz ``` 尝试修改一下其中的values.yaml。 diff --git a/docs/getting-started/quick-start/node.md b/docs/getting-started/quick-start/node.md index dfd9074..a73389a 100644 --- a/docs/getting-started/quick-start/node.md +++ b/docs/getting-started/quick-start/node.md @@ -5,7 +5,7 @@ ### 1. 下载可执行文件 请找一台Linux服务器节点,下载Loggie二进制可执行文件 ```shell -VERSION=v1.4.0-rc.0 +VERSION=v1.4.0 curl -LJ https://github.com/loggie-io/loggie/releases/download/$VERSION/loggie -o loggie ```