Skip to content

Commit 5893c32

Browse files
committed
Add initContainer resources
1 parent f60c82e commit 5893c32

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

helm/superset/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ maintainers:
2929
- name: craig-rueda
3030
email: craig@craigrueda.com
3131
url: https://github.com/craig-rueda
32-
version: 0.15.2 # See [README](https://github.com/apache/superset/blob/master/helm/superset/README.md#versioning) for version details.
32+
version: 0.15.3 # See [README](https://github.com/apache/superset/blob/master/helm/superset/README.md#versioning) for version details.
3333
dependencies:
3434
- name: postgresql
3535
version: 13.4.4

helm/superset/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: https://github.com/norwoodj/helm-docs
2323

2424
# superset
2525

26-
![Version: 0.15.2](https://img.shields.io/badge/Version-0.15.2-informational?style=flat-square)
26+
![Version: 0.15.3](https://img.shields.io/badge/Version-0.15.3-informational?style=flat-square)
2727

2828
Apache Superset is a modern, enterprise-ready business intelligence web application
2929

helm/superset/values.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,12 @@ supersetNode:
312312
- /bin/sh
313313
- -c
314314
- dockerize -wait "tcp://$DB_HOST:$DB_PORT" -timeout 120s
315+
resources:
316+
limits:
317+
memory: "256Mi"
318+
requests:
319+
cpu: "250m"
320+
memory: "128Mi"
315321

316322
# -- Launch additional containers into supersetNode pod
317323
extraContainers: []
@@ -410,6 +416,12 @@ supersetWorker:
410416
- /bin/sh
411417
- -c
412418
- dockerize -wait "tcp://$DB_HOST:$DB_PORT" -wait "tcp://$REDIS_HOST:$REDIS_PORT" -timeout 120s
419+
resources:
420+
limits:
421+
memory: "256Mi"
422+
requests:
423+
cpu: "250m"
424+
memory: "128Mi"
413425
# -- Launch additional containers into supersetWorker pod
414426
extraContainers: []
415427
# -- Annotations to be added to supersetWorker deployment
@@ -492,6 +504,12 @@ supersetCeleryBeat:
492504
- /bin/sh
493505
- -c
494506
- dockerize -wait "tcp://$DB_HOST:$DB_PORT" -wait "tcp://$REDIS_HOST:$REDIS_PORT" -timeout 120s
507+
resources:
508+
limits:
509+
memory: "256Mi"
510+
requests:
511+
cpu: "250m"
512+
memory: "128Mi"
495513
# -- Launch additional containers into supersetCeleryBeat pods
496514
extraContainers: []
497515
# -- Annotations to be added to supersetCeleryBeat deployment
@@ -585,6 +603,12 @@ supersetCeleryFlower:
585603
- /bin/sh
586604
- -c
587605
- dockerize -wait "tcp://$DB_HOST:$DB_PORT" -wait "tcp://$REDIS_HOST:$REDIS_PORT" -timeout 120s
606+
resources:
607+
limits:
608+
memory: "256Mi"
609+
requests:
610+
cpu: "250m"
611+
memory: "128Mi"
588612
# -- Launch additional containers into supersetCeleryFlower pods
589613
extraContainers: []
590614
# -- Annotations to be added to supersetCeleryFlower deployment
@@ -749,6 +773,12 @@ init:
749773
- /bin/sh
750774
- -c
751775
- dockerize -wait "tcp://$DB_HOST:$DB_PORT" -timeout 120s
776+
resources:
777+
limits:
778+
memory: "256Mi"
779+
requests:
780+
cpu: "250m"
781+
memory: "128Mi"
752782
# -- A Superset init script
753783
# @default -- a script to create admin user and initialize roles
754784
initscript: |-

0 commit comments

Comments
 (0)