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-helm-chart.git


The following commit(s) were added to refs/heads/main by this push:
     new a172cbb  adjust readme and helmsetup (#184)
a172cbb is described below

commit a172cbb93d3be2964f1e55af41beea1c862c9057
Author: ZhangNing10 <[email protected]>
AuthorDate: Wed Sep 27 16:47:18 2023 +0800

    adjust readme and helmsetup (#184)
---
 HelmSetup.md               | 6 +++---
 README.md                  | 9 +++++----
 charts/devlake/Chart.yaml  | 4 ++--
 charts/devlake/values.yaml | 4 ++--
 4 files changed, 12 insertions(+), 11 deletions(-)

diff --git a/HelmSetup.md b/HelmSetup.md
index e369fd9..a1306bc 100644
--- a/HelmSetup.md
+++ b/HelmSetup.md
@@ -24,7 +24,7 @@ To install the chart with release name `devlake`:
 helm repo add devlake https://apache.github.io/incubator-devlake-helm-chart
 helm repo update
 ENCRYPTION_SECRET=$(openssl rand -base64 2000 | tr -dc 'A-Z' | fold -w 128 | 
head -n 1)
-helm install devlake devlake/devlake --version=0.18.0 --set 
lake.encryptionSecret.secret=$ENCRYPTION_SECRET
+helm install devlake devlake/devlake --version=0.18.1-beta1 --set 
lake.encryptionSecret.secret=$ENCRYPTION_SECRET
 ```
 
 Visit your devlake from the node port (32001 by default): 
http://YOUR-NODE-IP:32001.
@@ -49,14 +49,14 @@ _Notes for mac users with minikube:_
 
 ```shell
 helm repo update
-helm upgrade devlake devlake/devlake --version=0.18.0 --set 
lake.encryptionSecret.secret=<ENCRYPTION_SECRET>
+helm upgrade devlake devlake/devlake --version=0.18.1-beta1 --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
+helm upgrade devlake devlake/devlake --version=0.18.1-beta1
 ```
 
 ### 2.3 Uninstall
diff --git a/README.md b/README.md
index c2f9bf8..1b66a65 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,8 @@ Thanks to @matrixji who initiated all content in 
`apache/incubator-devlake`, thi
 ```shell
 helm repo add devlake https://apache.github.io/incubator-devlake-helm-chart
 helm repo update
-helm install devlake devlake/devlake
+ENCRYPTION_SECRET=$(openssl rand -base64 2000 | tr -dc 'A-Z' | fold -w 128 | 
head -n 1)
+helm install devlake devlake/devlake --set 
lake.encryptionSecret.secret=$ENCRYPTION_SECRET
 ```
 
 2. Install the latest development version with release name `devlake`:
@@ -37,7 +38,7 @@ helm install devlake devlake/devlake
 helm repo add devlake https://apache.github.io/incubator-devlake-helm-chart
 helm repo update
 ENCRYPTION_SECRET=$(openssl rand -base64 2000 | tr -dc 'A-Z' | fold -w 128 | 
head -n 1)
-helm install devlake devlake/devlake --version=0.18.0 --set 
lake.encryptionSecret.secret=$ENCRYPTION_SECRET
+helm install devlake devlake/devlake --version=0.18.1-beta1 --set 
lake.encryptionSecret.secret=$ENCRYPTION_SECRET
 ```
 
 If you are using minikube inside your mac, please use the following command to 
forward the port:
@@ -70,14 +71,14 @@ grafana by url `http://YOUR-NODE-IP:30091`
 
 ```shell
 helm repo update
-helm upgrade devlake devlake/devlake --version=0.18.0 --set 
lake.encryptionSecret.secret=<ENCRYPTION_SECRET>
+helm upgrade devlake devlake/devlake --version=0.18.1-beta1 --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
+helm upgrade devlake devlake/devlake --version=0.18.1-beta1
 ```
 
 ## Uninstall
diff --git a/charts/devlake/Chart.yaml b/charts/devlake/Chart.yaml
index e1e699d..ab68fe2 100644
--- a/charts/devlake/Chart.yaml
+++ b/charts/devlake/Chart.yaml
@@ -28,10 +28,10 @@ keywords:
 type: application
 
 # Chart version
-version: 0.18.0
+version: 0.18.1-beta1
 
 # devlake version
-appVersion: v0.18.0
+appVersion: v0.18.1-beta1
 
 dependencies:
   - condition: grafana.enabled
diff --git a/charts/devlake/values.yaml b/charts/devlake/values.yaml
index ff16fe3..63b67cd 100644
--- a/charts/devlake/values.yaml
+++ b/charts/devlake/values.yaml
@@ -17,7 +17,7 @@
 
 # replica count for dev
 replicaCount: 1
-imageTag: v0.18.0
+imageTag: v0.18.1-beta1
 
 #the common environments for all pods
 envs:
@@ -140,7 +140,7 @@ grafana:
     url: ""
   image:
     repository: devlake.docker.scarf.sh/apache/devlake-dashboard
-    tag: v0.18.0
+    tag: v0.18.1-beta1
   grafana.ini:
     server:
       root_url: "%(protocol)s://%(domain)s/grafana"

Reply via email to