-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
42 lines (36 loc) · 1.17 KB
/
values.yaml
File metadata and controls
42 lines (36 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
replicaCount: 1 # Number of replicas for the Metabase deployment
image:
repository: metabase/metabase
tag: v0.54.9 # latest version as of May 2025
pullPolicy: IfNotPresent
resources:
requests:
memory: 4Gi # Adjust memory requests as needed
cpu: 1
limits:
memory: 4Gi # Adjust memory limits as needed
cpu: 1
storage:
size: 10Gi # Adjust size as needed
accessMode: ReadWriteOnce
existingClaim: metabase-data
ingress:
enabled: true
host: metabase.example.com # Replace with your actual domain
annotations:
kubernetes.io/ingress.class: alb
alb.ingress.kubernetes.io/certificate-arn: "" # Replace with your actual certificate ARN
alb.ingress.kubernetes.io/listen-ports: '[{"HTTPS": 443}, {"HTTP": 80}]'
alb.ingress.kubernetes.io/group.name: metabase
alb.ingress.kubernetes.io/target-type: ip
service:
type: ClusterIP
port: 80
targetPort: 3000 # Metabase default port
env:
MB_DB_FILE: /metabase-data/metabase.db
JAVA_OPTS: "-Xms4g -Xmx4g -XX:ActiveProcessorCount=1"
tolerations:
- key: "" # This toleration allows the pod to be scheduled on any node, including those with taints"
operator: "Exists"
effect: "NoSchedule"