Skip to content

Commit 204a1d9

Browse files
committed
fix(helm): expose prometheus metrics port for scraping if enabled
1 parent 5b03881 commit 204a1d9

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

charts/pgcat/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ maintainers:
55
- name: PostgresML
66
77
appVersion: "1.3.0"
8-
version: 0.2.5
8+
version: 0.2.6

charts/pgcat/templates/deployment.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ metadata:
44
name: {{ include "pgcat.fullname" . }}
55
labels:
66
{{- include "pgcat.labels" . | nindent 4 }}
7+
{{- with .Values.podAnnotations }}
8+
annotations:
9+
{{- toYaml . | nindent 4 }}
10+
{{- end }}
711
spec:
812
replicas: {{ .Values.replicaCount }}
913
selector:
@@ -36,6 +40,11 @@ spec:
3640
- name: pgcat
3741
containerPort: {{ .Values.configuration.general.port }}
3842
protocol: TCP
43+
{{- if .Values.configuration.general.enable_prometheus_exporter }}
44+
- name: metrics
45+
containerPort: {{ .Values.configuration.general.prometheus_exporter_port }}
46+
protocol: TCP
47+
{{- end }}
3948
livenessProbe:
4049
tcpSocket:
4150
port: pgcat

0 commit comments

Comments
 (0)