From 43684d1721552eebf44a7b2484df8926f7ab1832 Mon Sep 17 00:00:00 2001 From: "Roberto C. Morano" Date: Tue, 13 Aug 2024 12:38:15 +0200 Subject: [PATCH] chore(helm/follower-app): make cardano-node host configurable per follower instance --- .../templates/deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/cf-cardano-ballot-ledger-follower-api/templates/deployment.yaml b/deploy/cf-cardano-ballot-ledger-follower-api/templates/deployment.yaml index 9fc92901b..9468bee3a 100644 --- a/deploy/cf-cardano-ballot-ledger-follower-api/templates/deployment.yaml +++ b/deploy/cf-cardano-ballot-ledger-follower-api/templates/deployment.yaml @@ -37,11 +37,11 @@ spec: - name: CARDANO_NODE_HOST - value: {{ $.Values.yaci.cardanoNodeHost | default "preprod-node.world.dev.cardano.org" }} + value: {{ $instance.yaci.cardanoNodeHost | default "preprod-node.world.dev.cardano.org" }} - name: CARDANO_NODE_PORT - value: {{ $.Values.yaci.cardanoNodePort | default 30000 | quote }} + value: {{ $instance.yaci.cardanoNodePort | default 30000 | quote }} - name: CARDANO_NODE_PROTOCOL_MAGIC - value: {{ $.Values.yaci.cardanoNodeProtocolMagic | default 1 | quote }} + value: {{ $instance.yaci.cardanoNodeProtocolMagic | default 1 | quote }} - name: VOTING_METADATA_LABEL value: {{ $.Values.votingMetadataLabel | default 11113 | quote }}