We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 40cc4dc + df28b59 commit 30bc55dCopy full SHA for 30bc55d
validator/main.go
@@ -1209,10 +1209,12 @@ func (c *CUDA) validate() error {
1209
// update k8s client for the plugin
1210
c.setKubeClient(kubeClient)
1211
1212
- // workload test
1213
- err = c.runWorkload()
1214
- if err != nil {
1215
- return err
+ if withWorkloadFlag {
+ // workload test
+ err = c.runWorkload()
+ if err != nil {
1216
+ return err
1217
+ }
1218
}
1219
1220
// create plugin status file
0 commit comments