Skip to content

Commit ea33a3f

Browse files
authored
fix(ogmios): fix Podmonitor mismatch (#321)
1 parent 39c5253 commit ea33a3f

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

charts/ogmios/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v1
22
name: ogmios
33
description: Creates an Ogmios API service with SOCAT sidecar
4-
version: 0.0.7
4+
version: 0.0.8
55
appVersion: v6.14.0
66
maintainers:
77
- name: aurora

charts/ogmios/templates/deployment.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ spec:
4646
imagePullPolicy: {{ .Values.image.pullPolicy }}
4747
name: ogmios
4848
ports:
49-
- containerPort: 1337
49+
- name: http
50+
containerPort: 1337
5051
{{- with .Values.livenessProbe }}
5152
livenessProbe:
5253
{{- toYaml . | nindent 10 }}

charts/ogmios/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ podMonitor:
5656
enabled: false
5757
extraLabels: {}
5858
podMetricsEndpoints:
59-
- port: 1337
59+
# port in Podmonitor should match containerPort name in deployment
60+
- port: http
6061
path: /metrics
6162
scheme: http
6263
interval: 30s

0 commit comments

Comments
 (0)