You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@devlake.apache.org by wa...@apache.org on 2022/10/20 02:05:31 UTC

[incubator-devlake] branch main updated: fix(deployment): Using latest image in helm chart

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

warren pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


The following commit(s) were added to refs/heads/main by this push:
     new 2860669e fix(deployment): Using latest image in helm chart
2860669e is described below

commit 2860669e8fa69295b578485da12cd74fc67890c6
Author: Ji Bin <ma...@live.com>
AuthorDate: Wed Oct 19 19:55:44 2022 +0800

    fix(deployment): Using latest image in helm chart
    
    - using latest tag for devlake images
    - using mysql:8 for mysql images
    - keep debian based mysql in ci pipeline, currenly oracle based mysql is not working with KinD
---
 .github/workflows/deploy-test.yml |  1 +
 deployment/helm/values.yaml       | 11 ++++++-----
 2 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml
index 5922428f..49895d5d 100644
--- a/.github/workflows/deploy-test.yml
+++ b/.github/workflows/deploy-test.yml
@@ -67,6 +67,7 @@ jobs:
           echo Node IP: ${NODE_IP}
           helm install --wait --timeout 300s deploy-test deployment/helm \
             --set service.uiPort=30000 \
+            --set mysql.image.tag=8-debian \
             --set option.localtime=""
           kubectl get pods -o wide
           kubectl get services -o wide
diff --git a/deployment/helm/values.yaml b/deployment/helm/values.yaml
index b84c2642..f131cf3f 100644
--- a/deployment/helm/values.yaml
+++ b/deployment/helm/values.yaml
@@ -49,10 +49,11 @@ mysql:
     size: 5Gi
 
   # image for mysql
+  # mysql:8 for latest version with mysql-8, which avaliable for amd64/arm64v8 arch.
   image:
     repository: mysql
-    tag: 8.0.26
-    pullPolicy: IfNotPresent
+    tag: 8
+    pullPolicy: Always
   
   # resources config for mysql if have
   resources: {}
@@ -71,7 +72,7 @@ grafana:
   # image for grafana
   image:
     repository: apache/devlake-dashboard
-    tag: v0.12.0-rc2
+    tag: latest
     pullPolicy: Always
   
   resources: {}
@@ -86,7 +87,7 @@ grafana:
 lake:
   image:
     repository: apache/devlake
-    tag: v0.12.0-rc2
+    tag: latest
     pullPolicy: Always
   # storage for config
   storage:
@@ -107,7 +108,7 @@ lake:
 ui:
   image:
     repository: apache/devlake-config-ui
-    tag: v0.12.0-rc2
+    tag: latest
     pullPolicy: Always
 
   resources: {}