File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ def setup_service_accounts(self):
43
43
44
44
def deploy_network_in_team_namespaces (self ):
45
45
network_name = "teamnet"
46
+ up = "\x1b [A"
46
47
down = "\x1b [B"
47
48
self .log .info (f"Create a warnet network chart called '{ network_name } '" )
48
49
child = pexpect .spawn ("warnet init" )
@@ -51,11 +52,12 @@ def deploy_network_in_team_namespaces(self):
51
52
child .expect ("Enter your network name" )
52
53
child .sendline (network_name )
53
54
child .expect ("How many nodes would you like" )
54
- child .send (down )
55
- child .send (down )
56
- child .send (down )
55
+ child .send (down ) # > 20
56
+ child .send (down ) # > 50
57
+ child .send (down ) # > other
57
58
child .sendline ()
58
59
child .expect ("How many connections would you like each node to have" )
60
+ child .send (up ) # > 2
59
61
child .sendline ()
60
62
child .expect ("Which version would you like nodes to run by default" )
61
63
child .sendline ()
You can’t perform that action at this time.
0 commit comments