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

klesh 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 25263bfe22 add release link (#681)
25263bfe22 is described below

commit 25263bfe22435b3cd43114c740e882e0e775f665
Author: ZhangNing10 <[email protected]>
AuthorDate: Wed Nov 15 14:13:42 2023 +0800

    add release link (#681)
    
    * add release link
    
    * adjust helmsetup about parameters
---
 docs/GettingStarted/DockerComposeSetup.md                         | 4 ++--
 docs/GettingStarted/HelmSetup.md                                  | 3 +++
 versioned_docs/version-v0.19/GettingStarted/DockerComposeSetup.md | 4 ++--
 versioned_docs/version-v0.19/GettingStarted/HelmSetup.md          | 3 +++
 versioned_docs/version-v0.20/GettingStarted/DockerComposeSetup.md | 4 ++--
 versioned_docs/version-v0.20/GettingStarted/HelmSetup.md          | 3 +++
 6 files changed, 15 insertions(+), 6 deletions(-)

diff --git a/docs/GettingStarted/DockerComposeSetup.md 
b/docs/GettingStarted/DockerComposeSetup.md
index 5d45516ce5..626ce3cdba 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.19.0-beta6)
 into a folder.
+1. Download `docker-compose.yml` and `env.example` from the [latest 
release](https://github.com/apache/incubator-devlake/releases) 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:
 
@@ -51,7 +51,7 @@ Note 1: **Back up your Grafana dashboards** before upgrading 
if you have modifie
 Note 2: **If you're upgrading from DevLake v0.17.x or earlier versions to 
v0.18.x or later versions**, you need to find the ENCODE_KEY value in the .env 
file of devlake container, and assign the value to ENCRYPTION_SECRET via .env 
file or environment variable in docker-compose.yml
 
 1. Run `docker-compose down` to stop services;
-2. Download `docker-compose.yml` and `env.example` from the [latest 
release](https://github.com/apache/incubator-devlake/releases/tag/v0.19.0-beta6).
+2. Download `docker-compose.yml` and `env.example` from the [latest 
release](https://github.com/apache/incubator-devlake/releases).
 3. Use the new `docker-compose.yml` and `env.example` to replace the old 
`docker-compose.yml` and `.env`; Or if you have modified/customized values in 
the old files, compare the new files with the old ones, adjust the old files 
according to the new ones.
 4. If upgrading from earlier versions to v0.18.0+, set the ENCRYPTION_SECRET 
environment variable in docker-compose.yml or .env file, refer to above Note 2.
 5. Run `docker-compose up -d` to start DevLake services.
diff --git a/docs/GettingStarted/HelmSetup.md b/docs/GettingStarted/HelmSetup.md
index c2b69929ee..ed36c055ed 100644
--- a/docs/GettingStarted/HelmSetup.md
+++ b/docs/GettingStarted/HelmSetup.md
@@ -14,6 +14,8 @@ sidebar_position: 2
 
 #### You can also check https://github.com/apache/incubator-devlake-helm-chart 
to make contribution
 
+#### To install or upgrade to the latest version, please check 
[here](https://github.com/apache/incubator-devlake-helm-chart/releases)
+
 ### Install
 
 To install the chart with release name `devlake`,follow these steps:
@@ -182,6 +184,7 @@ Some useful parameters for the chart, you could also check 
them in values.yaml
 | mysql.image.repository                    | repository for mysql's image     
                                                     | mysql                    
|
 | mysql.image.tag                           | image tag for mysql's image      
                                                     | 8                        
|
 | mysql.image.pullPolicy                    | pullPolicy for mysql's image     
                                                     | IfNotPresent             
|
+| mysql.initContainers                      | init containers to run to 
complete before mysql                                       | []                
       |
 | mysql.extraLabels                         | extra labels for mysql's 
statefulset                                                  | {}               
        |
 | mysql.securityContext                     | pod security context values      
                                                     | {}                       
|
 | mysql.containerSecurityContext            | container security context 
values                                                     | {}                 
      |
diff --git a/versioned_docs/version-v0.19/GettingStarted/DockerComposeSetup.md 
b/versioned_docs/version-v0.19/GettingStarted/DockerComposeSetup.md
index 5d45516ce5..626ce3cdba 100644
--- a/versioned_docs/version-v0.19/GettingStarted/DockerComposeSetup.md
+++ b/versioned_docs/version-v0.19/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.19.0-beta6)
 into a folder.
+1. Download `docker-compose.yml` and `env.example` from the [latest 
release](https://github.com/apache/incubator-devlake/releases) 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:
 
@@ -51,7 +51,7 @@ Note 1: **Back up your Grafana dashboards** before upgrading 
if you have modifie
 Note 2: **If you're upgrading from DevLake v0.17.x or earlier versions to 
v0.18.x or later versions**, you need to find the ENCODE_KEY value in the .env 
file of devlake container, and assign the value to ENCRYPTION_SECRET via .env 
file or environment variable in docker-compose.yml
 
 1. Run `docker-compose down` to stop services;
-2. Download `docker-compose.yml` and `env.example` from the [latest 
release](https://github.com/apache/incubator-devlake/releases/tag/v0.19.0-beta6).
+2. Download `docker-compose.yml` and `env.example` from the [latest 
release](https://github.com/apache/incubator-devlake/releases).
 3. Use the new `docker-compose.yml` and `env.example` to replace the old 
`docker-compose.yml` and `.env`; Or if you have modified/customized values in 
the old files, compare the new files with the old ones, adjust the old files 
according to the new ones.
 4. If upgrading from earlier versions to v0.18.0+, set the ENCRYPTION_SECRET 
environment variable in docker-compose.yml or .env file, refer to above Note 2.
 5. Run `docker-compose up -d` to start DevLake services.
diff --git a/versioned_docs/version-v0.19/GettingStarted/HelmSetup.md 
b/versioned_docs/version-v0.19/GettingStarted/HelmSetup.md
index c2b69929ee..ed36c055ed 100644
--- a/versioned_docs/version-v0.19/GettingStarted/HelmSetup.md
+++ b/versioned_docs/version-v0.19/GettingStarted/HelmSetup.md
@@ -14,6 +14,8 @@ sidebar_position: 2
 
 #### You can also check https://github.com/apache/incubator-devlake-helm-chart 
to make contribution
 
+#### To install or upgrade to the latest version, please check 
[here](https://github.com/apache/incubator-devlake-helm-chart/releases)
+
 ### Install
 
 To install the chart with release name `devlake`,follow these steps:
@@ -182,6 +184,7 @@ Some useful parameters for the chart, you could also check 
them in values.yaml
 | mysql.image.repository                    | repository for mysql's image     
                                                     | mysql                    
|
 | mysql.image.tag                           | image tag for mysql's image      
                                                     | 8                        
|
 | mysql.image.pullPolicy                    | pullPolicy for mysql's image     
                                                     | IfNotPresent             
|
+| mysql.initContainers                      | init containers to run to 
complete before mysql                                       | []                
       |
 | mysql.extraLabels                         | extra labels for mysql's 
statefulset                                                  | {}               
        |
 | mysql.securityContext                     | pod security context values      
                                                     | {}                       
|
 | mysql.containerSecurityContext            | container security context 
values                                                     | {}                 
      |
diff --git a/versioned_docs/version-v0.20/GettingStarted/DockerComposeSetup.md 
b/versioned_docs/version-v0.20/GettingStarted/DockerComposeSetup.md
index 5d45516ce5..626ce3cdba 100644
--- a/versioned_docs/version-v0.20/GettingStarted/DockerComposeSetup.md
+++ b/versioned_docs/version-v0.20/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.19.0-beta6)
 into a folder.
+1. Download `docker-compose.yml` and `env.example` from the [latest 
release](https://github.com/apache/incubator-devlake/releases) 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:
 
@@ -51,7 +51,7 @@ Note 1: **Back up your Grafana dashboards** before upgrading 
if you have modifie
 Note 2: **If you're upgrading from DevLake v0.17.x or earlier versions to 
v0.18.x or later versions**, you need to find the ENCODE_KEY value in the .env 
file of devlake container, and assign the value to ENCRYPTION_SECRET via .env 
file or environment variable in docker-compose.yml
 
 1. Run `docker-compose down` to stop services;
-2. Download `docker-compose.yml` and `env.example` from the [latest 
release](https://github.com/apache/incubator-devlake/releases/tag/v0.19.0-beta6).
+2. Download `docker-compose.yml` and `env.example` from the [latest 
release](https://github.com/apache/incubator-devlake/releases).
 3. Use the new `docker-compose.yml` and `env.example` to replace the old 
`docker-compose.yml` and `.env`; Or if you have modified/customized values in 
the old files, compare the new files with the old ones, adjust the old files 
according to the new ones.
 4. If upgrading from earlier versions to v0.18.0+, set the ENCRYPTION_SECRET 
environment variable in docker-compose.yml or .env file, refer to above Note 2.
 5. Run `docker-compose up -d` to start DevLake services.
diff --git a/versioned_docs/version-v0.20/GettingStarted/HelmSetup.md 
b/versioned_docs/version-v0.20/GettingStarted/HelmSetup.md
index c2b69929ee..ed36c055ed 100644
--- a/versioned_docs/version-v0.20/GettingStarted/HelmSetup.md
+++ b/versioned_docs/version-v0.20/GettingStarted/HelmSetup.md
@@ -14,6 +14,8 @@ sidebar_position: 2
 
 #### You can also check https://github.com/apache/incubator-devlake-helm-chart 
to make contribution
 
+#### To install or upgrade to the latest version, please check 
[here](https://github.com/apache/incubator-devlake-helm-chart/releases)
+
 ### Install
 
 To install the chart with release name `devlake`,follow these steps:
@@ -182,6 +184,7 @@ Some useful parameters for the chart, you could also check 
them in values.yaml
 | mysql.image.repository                    | repository for mysql's image     
                                                     | mysql                    
|
 | mysql.image.tag                           | image tag for mysql's image      
                                                     | 8                        
|
 | mysql.image.pullPolicy                    | pullPolicy for mysql's image     
                                                     | IfNotPresent             
|
+| mysql.initContainers                      | init containers to run to 
complete before mysql                                       | []                
       |
 | mysql.extraLabels                         | extra labels for mysql's 
statefulset                                                  | {}               
        |
 | mysql.securityContext                     | pod security context values      
                                                     | {}                       
|
 | mysql.containerSecurityContext            | container security context 
values                                                     | {}                 
      |

Reply via email to