Skip to content

Commit 2f12c17

Browse files
fix: solo quick-start single deploy failure during network setup (#2369)
Signed-off-by: Jeromy Cannon <[email protected]>
1 parent 8b20668 commit 2f12c17

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/commands/node/tasks.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1320,8 +1320,12 @@ export class NodeCommandTasks {
13201320
},
13211321
task: async (context_): Promise<void> => {
13221322
for (const consensusNode of context_.config.consensusNodes) {
1323+
const context: string = helpers.extractContextFromConsensusNodes(
1324+
consensusNode.name,
1325+
context_.config.consensusNodes,
1326+
);
13231327
const podReference: PodReference = await this.k8Factory
1324-
.getK8(consensusNode.cluster)
1328+
.getK8(context)
13251329
.pods()
13261330
.list(NamespaceName.of(consensusNode.namespace), [
13271331
`solo.hedera.com/node-name=${consensusNode.name}`,

0 commit comments

Comments
 (0)