Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit c79b41c

Browse files
authored
makes PROMETHEUS_URL & LOKI_URL configurable & adds custom-s3-creds (#78)
1 parent 669b78b commit c79b41c

File tree

7 files changed

+28
-11
lines changed

7 files changed

+28
-11
lines changed

Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: tembo
3-
version: 25.3.2
3+
version: 25.3.3
44
appVersion: 1.0.0
55
description: Helm chart to deploy the Tembo Platform
66
keywords:
@@ -11,10 +11,10 @@ dependencies:
1111
condition: global.certManagerEnabled
1212
- name: tembo
1313
condition: global.temboEnabled
14-
version: 25.3.2
14+
version: 25.3.3
1515
- name: monitoring
1616
condition: global.monitoringEnabled
17-
version: 25.3.2
17+
version: 25.3.3
1818
- name: traefik
1919
condition: global.traefikEnabled
20-
version: 25.3.2
20+
version: 25.3.3

charts/monitoring/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: monitoring
33
description: A Helm chart for the Tembo monitoring stack
4-
version: 25.3.2
4+
version: 25.3.3
55
dependencies:
66
- name: kube-prometheus-stack
77
version: "44.4.1"

charts/tembo/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: tembo
3-
version: 25.3.2
3+
version: 25.3.3
44
description: A Helm chart to deploy the Tembo platform
55
keywords:
66
- tembo
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{{- if .Values.jobs.customS3Backup.enabled }}
2+
apiVersion: v1
3+
kind: Secret
4+
metadata:
5+
name: custom-s3-creds
6+
type: Opaque
7+
data:
8+
ACCESS_KEY_ID: {{ .Values.jobs.customS3Backup.accessKeyId | b64enc | quote }}
9+
SECRET_ACCESS_KEY: {{ .Values.jobs.customS3Backup.secretAccessKey | b64enc | quote }}
10+
{{- end }}

charts/tembo/values.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -688,3 +688,9 @@ traefik-https:
688688
enabled: false
689689
# Address of the auth server
690690
address: ~
691+
jobs:
692+
customS3Backup:
693+
enabled: false
694+
accessKeyId: ~
695+
secretAccessKey: ~
696+

charts/traefik/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: traefik
33
description: A Helm chart for the traefik ingress controller
4-
version: 25.3.2
4+
version: 25.3.3
55
dependencies:
66
- name: traefik
77
version: 29.0.1

values.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,6 @@ tembo:
3232
value: "false"
3333
- name: STORAGE_ARCHIVE_BUCKET
3434
value: "tembo-storage"
35-
- name: PROMETHEUS_URL
36-
value: "http://tembo-kube-prometheus-stac-prometheus.tembo-system.svc.cluster.local:9090/api/v1/query"
37-
- name: LOKI_URL
38-
value: "http://loki-gateway.tembo-system.svc.cluster.local/loki/api/v1/query"
3935
tembo-operator:
4036
controller:
4137
monitoring:
@@ -60,6 +56,11 @@ tembo:
6056
value: ~
6157
- name: METRONOME_SECRET_KEY
6258
value: ~
59+
jobs:
60+
customS3Backup:
61+
enabled: false
62+
accessKeyId: ~
63+
secretAccessKey: ~
6364
monitoring:
6465
kube-prometheus-stack:
6566
alertmanager:

0 commit comments

Comments
 (0)