You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"[optional] reuse an existing network. If an existing network is not already running, create a new one and leave it running for subsequent usage.",
120
+
"[optional] reuse an existing network previously started with --reuse-network. If a network is not already running, create a new one and leave it running for subsequent usage. Ignored if --stop-network is provided.",
116
121
)
117
122
flag.BoolVar(
118
123
&vars.restartNetwork,
119
124
"restart-network",
120
125
false,
121
-
"[optional] restarts an existing network. Useful for ensuring a network is running with the current state of binaries on disk. Ignored if a network is not already running or --stop-network is provided.",
126
+
"[optional] restart an existing network previously started with --reuse-network. Useful for ensuring a network is running with the current state of binaries on disk. Ignored if a network is not already running or --stop-network is provided.",
122
127
)
123
128
flag.BoolVar(
124
129
&vars.delayNetworkShutdown,
125
130
"delay-network-shutdown",
126
131
false,
127
132
"[optional] whether to delay network shutdown to allow a final metrics scrape.",
128
133
)
134
+
flag.BoolVar(
135
+
&vars.startNetwork,
136
+
"start-network",
137
+
false,
138
+
"[optional] start a new network and exit without executing any tests. The new network cannot be reused with --reuse-network. Ignored if either --reuse-network or --stop-network is provided.",
139
+
)
129
140
flag.BoolVar(
130
141
&vars.stopNetwork,
131
142
"stop-network",
132
143
false,
133
-
"[optional] stop an existing network and exit without executing any tests.",
144
+
"[optional] stop an existing network started with --reuse-network and exit without executing any tests.",
0 commit comments