Skip to content

Commit 6d3f02f

Browse files
committed
enable healthcheck by default
1 parent 179ca26 commit 6d3f02f

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

charts/abstract-node/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: abstract-node
33
description: External node for syncing and serving blockchain data for Abstract
4-
version: 0.1.19
4+
version: 0.1.20
55
type: application
66
icon: https://abstract-assets.abs.xyz/icons/light.png
77
keywords:

charts/abstract-node/templates/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ spec:
152152
- name: ws
153153
containerPort: {{ .Values.rpc.ws.port }}
154154
{{- end }}
155-
{{- if .Values.global.metrics.enabled }}
155+
{{- if or .Values.global.metrics.enabled .Values.metrics.enabled }}
156156
- name: metrics
157157
containerPort: {{ .Values.metrics.port }}
158158
{{- end }}

charts/abstract-node/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ rpc:
168168
## Healthcheck configuration.
169169
##
170170
healthcheck:
171+
enabled: true
171172
port: "3081"
172173

173174
## Metrics configuration.

0 commit comments

Comments
 (0)