ConsenSys. qubernetes tessera connect to different URL

38 Views Asked by At

I am trying to convert k8s objects available with this git repo to the Helm chart (with four node quorum network)on GKE. https://github.com/ConsenSys/qubernetes

I tried changing the following config map blocks for peers

"peer": [ {
    "url": "http://{{ .Release.Name }}-quorum-node1:9001"
   }, {
    "url": "http://{{ .Release.Name }}-quorum-node2:9001"
   }, {
    "url": "http://{{ .Release.Name }}-quorum-node3:9001"
   }, {
    "url": "http://{{ .Release.Name }}-quorum-node4:9001"
   }],

If I create a helm chart with the name consensys-nw it should ideally be able to resolve these URLs

But when I check logs for tessera I got errors like

c.q.t.partyinfo.PartyInfoPoller - Error javax.ws.rs.ProcessingException: java.net.UnknownHostException: consensys-quorum-node1 when connecting to http://consensys-quorum-node1:9001/

Ideally, it should connect http://consensys-nw-quorum-node1:9001/ and not http://consensys-quorum-node1:9001/

0

There are 0 best solutions below