You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by cr...@apache.org on 2024/02/04 18:59:23 UTC

(superset) branch master updated: fix(helm): Fix inconsistency for the chart appVersion and default image tag (#27005)

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

craigrueda pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 7a270a5922 fix(helm): Fix inconsistency for the chart appVersion and default image tag (#27005)
7a270a5922 is described below

commit 7a270a59222b4517fbd71701e5ed9dd33d0ceaaf
Author: Denis Krivenko <dn...@gmail.com>
AuthorDate: Sun Feb 4 19:59:17 2024 +0100

    fix(helm): Fix inconsistency for the chart appVersion and default image tag (#27005)
---
 helm/superset/Chart.yaml  | 2 +-
 helm/superset/README.md   | 4 ++--
 helm/superset/values.yaml | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/helm/superset/Chart.yaml b/helm/superset/Chart.yaml
index 6926f3fcbb..7ff82d76da 100644
--- a/helm/superset/Chart.yaml
+++ b/helm/superset/Chart.yaml
@@ -29,7 +29,7 @@ maintainers:
   - name: craig-rueda
     email: craig@craigrueda.com
     url: https://github.com/craig-rueda
-version: 0.12.2
+version: 0.12.3
 dependencies:
   - name: postgresql
     version: 12.1.6
diff --git a/helm/superset/README.md b/helm/superset/README.md
index ed93586bc9..b282a9eb0d 100644
--- a/helm/superset/README.md
+++ b/helm/superset/README.md
@@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: https://github.com/norwoodj/helm-docs
 
 # superset
 
-![Version: 0.12.2](https://img.shields.io/badge/Version-0.12.2-informational?style=flat-square)
+![Version: 0.12.3](https://img.shields.io/badge/Version-0.12.3-informational?style=flat-square)
 
 Apache Superset is a modern, enterprise-ready business intelligence web application
 
@@ -77,7 +77,7 @@ On helm this can be set on `extraSecretEnv.SUPERSET_SECRET_KEY` or `configOverri
 | hostAliases | list | `[]` | Custom hostAliases for all superset pods # https://kubernetes.io/docs/tasks/network/customize-hosts-file-for-pods/ |
 | image.pullPolicy | string | `"IfNotPresent"` |  |
 | image.repository | string | `"apachesuperset.docker.scarf.sh/apache/superset"` |  |
-| image.tag | string | `"latest"` |  |
+| image.tag | string | `nil` |  |
 | imagePullSecrets | list | `[]` |  |
 | ingress.annotations | object | `{}` |  |
 | ingress.enabled | bool | `false` |  |
diff --git a/helm/superset/values.yaml b/helm/superset/values.yaml
index 3d96009d80..4183ca609d 100644
--- a/helm/superset/values.yaml
+++ b/helm/superset/values.yaml
@@ -179,7 +179,7 @@ extraConfigMountPath: "/app/configs"
 
 image:
   repository: apachesuperset.docker.scarf.sh/apache/superset
-  tag: "latest"
+  tag: ~
   pullPolicy: IfNotPresent
 
 imagePullSecrets: []