Skip to content

Commit

Permalink
DAL: add a new bootstrap peer running with --bootstrap-profile
Browse files Browse the repository at this point in the history
This is for dailynet and mondaynet, but mondaynet's change will take
effect next monday.
  • Loading branch information
nicolasochem committed Jul 28, 2023
1 parent 7e44e7f commit 1d57197
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions TezosChain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ export class TezosChain extends pulumi.ComponentResource {
}
]
}
params.helmValues.dalNodes.dal1.ingress = dalIngressParams;
params.helmValues.dalNodes.bootstrap.ingress = dalIngressParams;
params.helmValues.node_config_network.dal_config.bootstrap_peers = [`${dalRpcFqdn}:11732`];
new k8s.core.v1.Service(
`${name}-dal-p2p-lb`,
Expand All @@ -639,7 +639,7 @@ export class TezosChain extends pulumi.ComponentResource {
protocol: "TCP",
},
],
selector: { app: "dal-dal1" },
selector: { app: "dal-bootstrap" },
type: "LoadBalancer",
},
},
Expand Down
2 changes: 1 addition & 1 deletion dailynet/tezos-k8s
4 changes: 3 additions & 1 deletion dailynet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,11 @@ smartRollupNodes:
evm_proxy_ingress:
# ingress details filled by pulumi
dalNodes:
dal1:
bootstrap:
bootstrapProfile: true
ingress:
# ingress details filled up by pulumi
dal1:

bootstrap_peers: []
full_snapshot_url: null
Expand Down
4 changes: 3 additions & 1 deletion mondaynet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,11 @@ nodes:
rolling-node: null

dalNodes:
dal1:
bootstrap:
bootstrapProfile: true
ingress:
# ingress details filled up by pulumi
dal1:

bootstrap_peers:
- mondaynet.ecadinfra.com
Expand Down

0 comments on commit 1d57197

Please sign in to comment.