We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b43649 commit e060218Copy full SHA for e060218
src/commands/network.ts
@@ -783,14 +783,12 @@ export class NetworkCommand extends BaseCommand {
783
}
784
785
// Envoy Proxy
786
- // TODO: @Lenin, needs to use config.consensusNodes
787
- for (const nodeAlias of config.nodeAliases) {
+ for (const consensusNode of config.consensusNodes) {
788
subTasks.push({
789
- title: `Check Envoy Proxy for: ${chalk.yellow(nodeAlias)}`,
790
- // TODO: @Lenin, needs to use config.consensusNodes for both node name and context
+ title: `Check Envoy Proxy for: ${chalk.yellow(consensusNode.name)}, cluster: ${chalk.yellow(consensusNode.cluster)}`,
791
task: async () =>
792
await self.k8Factory
793
- .default()
+ .getK8(consensusNode.context)
794
.pods()
795
.waitForRunningPhase(
796
ctx.config.namespace,
0 commit comments