This is an automated email from the ASF dual-hosted git repository.
rusackas 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 39ac96817a8 fix(helm): Add default initContainer resources (#37637)
39ac96817a8 is described below
commit 39ac96817a8fa6618ea32043377c01f9cfcc10a0
Author: Tadas BarzdÅžius <[email protected]>
AuthorDate: Tue Feb 10 21:51:37 2026 +0200
fix(helm): Add default initContainer resources (#37637)
---
helm/superset/Chart.yaml | 2 +-
helm/superset/README.md | 2 +-
helm/superset/values.yaml | 30 ++++++++++++++++++++++++++++++
3 files changed, 32 insertions(+), 2 deletions(-)
diff --git a/helm/superset/Chart.yaml b/helm/superset/Chart.yaml
index c801e9fcdb5..0cab38e8fc8 100644
--- a/helm/superset/Chart.yaml
+++ b/helm/superset/Chart.yaml
@@ -29,7 +29,7 @@ maintainers:
- name: craig-rueda
email: [email protected]
url: https://github.com/craig-rueda
-version: 0.15.2 # See
[README](https://github.com/apache/superset/blob/master/helm/superset/README.md#versioning)
for version details.
+version: 0.15.3 # See
[README](https://github.com/apache/superset/blob/master/helm/superset/README.md#versioning)
for version details.
dependencies:
- name: postgresql
version: 13.4.4
diff --git a/helm/superset/README.md b/helm/superset/README.md
index 5eda52b0d64..e9b372c72c0 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
-
+
Apache Superset is a modern, enterprise-ready business intelligence web
application
diff --git a/helm/superset/values.yaml b/helm/superset/values.yaml
index a3853e798cd..fdcc7abccd8 100644
--- a/helm/superset/values.yaml
+++ b/helm/superset/values.yaml
@@ -312,6 +312,12 @@ supersetNode:
- /bin/sh
- -c
- dockerize -wait "tcp://$DB_HOST:$DB_PORT" -timeout 120s
+ resources:
+ limits:
+ memory: "256Mi"
+ requests:
+ cpu: "250m"
+ memory: "128Mi"
# -- Launch additional containers into supersetNode pod
extraContainers: []
@@ -410,6 +416,12 @@ supersetWorker:
- /bin/sh
- -c
- dockerize -wait "tcp://$DB_HOST:$DB_PORT" -wait
"tcp://$REDIS_HOST:$REDIS_PORT" -timeout 120s
+ resources:
+ limits:
+ memory: "256Mi"
+ requests:
+ cpu: "250m"
+ memory: "128Mi"
# -- Launch additional containers into supersetWorker pod
extraContainers: []
# -- Annotations to be added to supersetWorker deployment
@@ -492,6 +504,12 @@ supersetCeleryBeat:
- /bin/sh
- -c
- dockerize -wait "tcp://$DB_HOST:$DB_PORT" -wait
"tcp://$REDIS_HOST:$REDIS_PORT" -timeout 120s
+ resources:
+ limits:
+ memory: "256Mi"
+ requests:
+ cpu: "250m"
+ memory: "128Mi"
# -- Launch additional containers into supersetCeleryBeat pods
extraContainers: []
# -- Annotations to be added to supersetCeleryBeat deployment
@@ -585,6 +603,12 @@ supersetCeleryFlower:
- /bin/sh
- -c
- dockerize -wait "tcp://$DB_HOST:$DB_PORT" -wait
"tcp://$REDIS_HOST:$REDIS_PORT" -timeout 120s
+ resources:
+ limits:
+ memory: "256Mi"
+ requests:
+ cpu: "250m"
+ memory: "128Mi"
# -- Launch additional containers into supersetCeleryFlower pods
extraContainers: []
# -- Annotations to be added to supersetCeleryFlower deployment
@@ -749,6 +773,12 @@ init:
- /bin/sh
- -c
- dockerize -wait "tcp://$DB_HOST:$DB_PORT" -timeout 120s
+ resources:
+ limits:
+ memory: "256Mi"
+ requests:
+ cpu: "250m"
+ memory: "128Mi"
# -- A Superset init script
# @default -- a script to create admin user and initialize roles
initscript: |-