mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Merge pull request #102895 from jingxu97/june/skipmatrics
Skip migrated metrics for Windows CSI tests
This commit is contained in:
commit
6298e1fe6a
@ -206,6 +206,14 @@ func newMigrationOpCheck(cs clientset.Interface, pluginName string) *migrationOp
|
||||
moc.skipCheck = true
|
||||
return &moc
|
||||
}
|
||||
|
||||
// TODO: temporarily skip metrics check due to issue #[102893](https://github.com/kubernetes/kubernetes/issues/102893)
|
||||
// Will remove it once the issue is fixed
|
||||
if framework.NodeOSDistroIs("windows") {
|
||||
moc.skipCheck = true
|
||||
return &moc
|
||||
}
|
||||
|
||||
moc.oldInTreeOps, moc.oldMigratedOps = getMigrationVolumeOpCounts(cs, pluginName)
|
||||
return &moc
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user