This is an automated email from the ASF dual-hosted git repository.
abeizn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git
The following commit(s) were added to refs/heads/main by this push:
new 4f801788e0 update to v0.18.0-beta2 (#594)
4f801788e0 is described below
commit 4f801788e0445a8ad111788831940a6e0aa5b44e
Author: ZhangNing10 <[email protected]>
AuthorDate: Thu Jul 20 16:40:35 2023 +0800
update to v0.18.0-beta2 (#594)
---
docs/GettingStarted/DockerComposeSetup.md | 2 +-
docs/GettingStarted/HelmSetup.md | 16 ++++++++++++----
2 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/docs/GettingStarted/DockerComposeSetup.md
b/docs/GettingStarted/DockerComposeSetup.md
index aa8895e82f..25b0787954 100644
--- a/docs/GettingStarted/DockerComposeSetup.md
+++ b/docs/GettingStarted/DockerComposeSetup.md
@@ -12,7 +12,7 @@ sidebar_position: 1
## Launch DevLake
-1. Download `docker-compose.yml` and `env.example` from the [latest
release](https://github.com/apache/incubator-devlake/releases/tag/v0.18.0-beta1)
into a folder.
+1. Download `docker-compose.yml` and `env.example` from the [latest
release](https://github.com/apache/incubator-devlake/releases/tag/v0.18.0-beta2)
into a folder.
2. Rename `env.example` to `.env`. For Mac/Linux users, please run `mv
env.example .env` in the terminal. This file contains the environment variables
that the Devlake server will use. Additional ones can be found in the compose
file(s).
3. Generate a secure encryption key using a method such as OpenSSL. For
example, run the following command to generate a 128-character string
consisting of uppercase letters:
diff --git a/docs/GettingStarted/HelmSetup.md b/docs/GettingStarted/HelmSetup.md
index 1ee3cd37c9..fd46d382f6 100644
--- a/docs/GettingStarted/HelmSetup.md
+++ b/docs/GettingStarted/HelmSetup.md
@@ -40,7 +40,7 @@ To install the chart with release name `devlake`,follow these
steps:
```shell
helm repo add devlake https://apache.github.io/incubator-devlake-helm-chart
helm repo update
- helm install devlake devlake/devlake --version=0.18.0-beta1 --set
lake.encryptionSecret.secret=$ENCRYPTION_SECRET
+ helm install devlake devlake/devlake --version=0.18.0-beta2 --set
lake.encryptionSecret.secret=$ENCRYPTION_SECRET
```
And visit your devlake from the node port (32001 by default).
@@ -67,8 +67,9 @@ grafana by url `http://YOUR-NODE-IP:30091`
### Upgrade
-Note:
-If you're upgrading from DevLake v0.17.x or earlier versions to v0.18.x or
later versions:
+**Note:**
+
+**If you're upgrading from DevLake v0.17.x or earlier versions to v0.18.x or
later versions:**
1. Copy the ENCODE_KEY value from /app/config/.env of the lake pod (e.g.
devlake-lake-0), and replace the <ENCRYPTION_SECRET> in the upgrade command
below.
@@ -78,7 +79,14 @@ If you're upgrading from DevLake v0.17.x or earlier versions
to v0.18.x or later
```shell
helm repo update
-helm upgrade devlake devlake/devlake --version=0.18.0-beta1 --set
lake.encryptionSecret.secret=<ENCRYPTION_SECRET>
+helm upgrade devlake devlake/devlake --version=0.18.0-beta2 --set
lake.encryptionSecret.secret=<ENCRYPTION_SECRET>
+```
+
+**If you're upgrading from DevLake v0.18.x or later versions:**
+
+```shell
+helm repo update
+helm upgrade devlake devlake/devlake --version=0.18.0-beta2
```
### Uninstall