File tree 1 file changed +8
-1
lines changed
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,11 @@ func main() {
145
145
Name : "metrics,m" ,
146
146
Usage : "address to serve the metrics API" ,
147
147
},
148
+ cli.StringFlag {
149
+ Name : "runtime" ,
150
+ Usage : "set the runtime to stress test" ,
151
+ Value : "io.containerd.runtime.v1.linux" ,
152
+ },
148
153
}
149
154
app .Before = func (context * cli.Context ) error {
150
155
if context .GlobalBool ("json" ) {
@@ -166,6 +171,7 @@ func main() {
166
171
Exec : context .GlobalBool ("exec" ),
167
172
JSON : context .GlobalBool ("json" ),
168
173
Metrics : context .GlobalString ("metrics" ),
174
+ Runtime : context .GlobalString ("runtime" ),
169
175
}
170
176
if config .Metrics != "" {
171
177
return serve (config )
@@ -185,10 +191,11 @@ type config struct {
185
191
Exec bool
186
192
JSON bool
187
193
Metrics string
194
+ Runtime string
188
195
}
189
196
190
197
func (c config ) newClient () (* containerd.Client , error ) {
191
- return containerd .New (c .Address )
198
+ return containerd .New (c .Address , containerd . WithDefaultRuntime ( c . Runtime ) )
192
199
}
193
200
194
201
func serve (c config ) error {
You can’t perform that action at this time.
0 commit comments