ReplicaSet: Use apps/v1 RS in integration test.

This commit is contained in:
Anthony Yeh
2018-03-19 14:23:52 -07:00
parent b27836032a
commit f3ba27a500
3 changed files with 94 additions and 73 deletions

View File

@@ -418,7 +418,7 @@ func (d *deploymentTester) listUpdatedPods() ([]v1.Pod, error) {
}
func (d *deploymentTester) waitRSStable(replicaset *v1beta1.ReplicaSet) error {
return testutil.WaitRSStable(d.t, d.c, replicaset, pollInterval, pollTimeout)
return testutil.WaitExtensionsRSStable(d.t, d.c, replicaset, pollInterval, pollTimeout)
}
func (d *deploymentTester) scaleDeployment(newReplicas int32) error {