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 2023/03/23 14:38:19 UTC

[superset] branch master updated: fix(chart): add missing toleration for init-job (#23452)

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 a15e833128 fix(chart): add missing toleration for init-job (#23452)
a15e833128 is described below

commit a15e8331280607e4180eb304010b9d8e7d9dff66
Author: Jonathan Gallon <38...@users.noreply.github.com>
AuthorDate: Thu Mar 23 15:38:10 2023 +0100

    fix(chart): add missing toleration for init-job (#23452)
    
    Co-authored-by: Jonathan Gallon <jo...@manomano.com>
---
 helm/superset/Chart.yaml              | 2 +-
 helm/superset/README.md               | 2 +-
 helm/superset/templates/init-job.yaml | 4 ++++
 3 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/helm/superset/Chart.yaml b/helm/superset/Chart.yaml
index 8a7ec77cbe..40512d0e95 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.8.8
+version: 0.8.9
 dependencies:
   - name: postgresql
     version: 12.1.6
diff --git a/helm/superset/README.md b/helm/superset/README.md
index 89db4119a2..85f72a86e4 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.8.8](https://img.shields.io/badge/Version-0.8.8-informational?style=flat-square)
+![Version: 0.8.9](https://img.shields.io/badge/Version-0.8.9-informational?style=flat-square)
 
 Apache Superset is a modern, enterprise-ready business intelligence web application
 
diff --git a/helm/superset/templates/init-job.yaml b/helm/superset/templates/init-job.yaml
index 8555253881..1ffbf1cd3f 100644
--- a/helm/superset/templates/init-job.yaml
+++ b/helm/superset/templates/init-job.yaml
@@ -83,6 +83,10 @@ spec:
         command: {{  tpl (toJson .Values.init.command) . }}
         resources:
           {{- toYaml .Values.init.resources | nindent 10 }}
+      {{- with .Values.tolerations }}
+      tolerations:
+        {{- toYaml . | nindent 8 }}
+      {{- end }}
       {{- if .Values.imagePullSecrets }}
       imagePullSecrets:
         {{- toYaml .Values.imagePullSecrets | nindent 8 }}