Skip to content

Commit 60974bd

Browse files
committed
fix(chart): cnpg externalClusters is a list not a map
1 parent e50817a commit 60974bd

3 files changed

Lines changed: 4 additions & 5 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.23
4+
version: 0.1.24
55
type: application
66
icon: https://abstract-assets.abs.xyz/icons/light.png
77
keywords:

charts/abstract-node/templates/cluster.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,8 @@ spec:
2222
bootstrap:
2323
{{ toYaml . | nindent 8 | trim }}
2424
{{- end }}
25-
{{- with .Values.cnpg.externalClusters }}
26-
externalClusters:
27-
{{ toYaml . | nindent 8 | trim }}
25+
{{- if .Values.cnpg.externalClusters }}
26+
externalClusters: {{- toYaml .Values.cnpg.externalClusters | nindent 8 }}
2827
{{- end }}
2928
instances: {{ .Values.cnpg.instances }}
3029
storage:

charts/abstract-node/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ cnpg:
330330
enablePodMonitor: true
331331
backup: {}
332332
bootstrap: {}
333-
externalClusters: {}
333+
externalClusters: []
334334
postgresql:
335335
parameters:
336336
shared_buffers: 2GB

0 commit comments

Comments
 (0)