You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🌱 e2e: fixes to node-drain and multidisk e2e test (#3358)
* e2e: use different namespace name for test pods to still match the capi regex pattern
* e2e: add custom machine drain rule for kube-system
* Bump sigs.k8s.io/cluster-api to 065f159469f356c029c7fdef92cce1d2e4b0ebc6
* fixup multidisk test
* fixup
// Currently, if not set, GOVC will set default to false. We may want to change this behavior to match what template image OS disk is to make them match if not set.
Expect(backingInfo.ThinProvisioned).To(Equal(types.NewBool(false)), "ThinProvisioned should be false for resulting disk when data disk provisionType is EagerlyZeroed")
124
122
Expect(backingInfo.EagerlyScrub).To(Equal(types.NewBool(true)), "EagerlyScrub should be true for resulting disk when data disk provisionType is EagerlyZeroed")
125
123
default:
126
-
// Currently, the settings for default behavior of disks during clone can come from templates settings,
127
-
// the default storage policy, or the clone's settings. Our tests will compare against os disk to make
128
-
// sure they are the same.
129
-
Expect(backingInfo.ThinProvisioned).To(Equal(osDiskBackingInfo.ThinProvisioned), "ThinProvisioned should match OS disk for resulting disk when data disk provisionType is not set")
130
-
Expect(backingInfo.EagerlyScrub).To(Equal(osDiskBackingInfo.EagerlyScrub), "EagerlyScrub should match OS disk for resulting disk when data disk provisionType is not set")
124
+
// Currently, the settings for default behavior of new disks during clone can come from templates settings,
125
+
// the default storage policy, the clone's settings or the datastore configuration.
0 commit comments