File tree Expand file tree Collapse file tree 4 files changed +24
-1
lines changed
Expand file tree Collapse file tree 4 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ maintainers:
55 - name : PostgresML
6677appVersion : " 1.2.0"
8- version : 0.2.5
8+ version : 0.2.6
Original file line number Diff line number Diff line change 3636 - name : pgcat
3737 containerPort : {{ .Values.configuration.general.port }}
3838 protocol : TCP
39+ - name : metrics
40+ containerPort : {{ .Values.configuration.general.prometheus_exporter_port }}
41+ protocol : TCP
3942 livenessProbe :
4043 tcpSocket :
4144 port : pgcat
Original file line number Diff line number Diff line change 1+ apiVersion : monitoring.coreos.com/v1
2+ kind : PodMonitor
3+ metadata :
4+ name : {{ include "pgcat.fullname" . }}
5+ labels :
6+ {{- include "pgcat.labels" . | nindent 4 }}
7+ spec :
8+ podMetricsEndpoints :
9+ - interval : 10s
10+ path : /metrics
11+ scheme : http
12+ targetPort : {{ .Values.configuration.general.prometheus_exporter_port }}
13+ selector :
14+ matchLabels :
15+ app.kubernetes.io/instance : pgcat
16+ app.kubernetes.io/name : pgcat
Original file line number Diff line number Diff line change 1111 targetPort : pgcat
1212 protocol : TCP
1313 name : pgcat
14+ - port : {{ .Values.configuration.general.prometheus_exporter_port }}
15+ targetPort : metrics
16+ protocol : TCP
17+ name : metrics
1418 selector :
1519 {{- include "pgcat.selectorLabels" . | nindent 4 }}
You can’t perform that action at this time.
0 commit comments