We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f975c1 + d2cedae commit 560d67fCopy full SHA for 560d67f
tools/testsys/src/sonobuoy.rs
@@ -101,6 +101,7 @@ pub(crate) fn workload_crd(test_input: TestInput) -> Result<Test> {
101
"testsys/type".to_string() => test_input.test_type.to_string(),
102
"testsys/cluster".to_string() => cluster_resource_name.to_string(),
103
});
104
+ let gpu = test_input.crd_input.variant.variant_flavor() == Some("nvidia");
105
let plugins: Vec<_> = test_input
106
.crd_input
107
.config
@@ -109,7 +110,7 @@ pub(crate) fn workload_crd(test_input: TestInput) -> Result<Test> {
109
110
.map(|(name, image)| WorkloadTest {
111
name: name.to_string(),
112
image: image.to_string(),
- ..Default::default()
113
+ gpu,
114
})
115
.collect();
116
if plugins.is_empty() {
0 commit comments