mirror of
https://github.com/optim-enterprises-bv/kubernetes.git
synced 2025-12-15 20:37:39 +00:00
Skip migrated metrics for Windows CSI tests
The Windows CSI migration test are failing due to issue https://github.com/kubernetes/kubernetes/issues/102893 Change-Id: I8c4c1b376a915f1a0982a9be5e35960886cc77bf
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user