Merge pull request #70283 from justinsb/only_reconcile_health_check_on_gce

e2e: Only do LB health check reconciliation test on GCE
This commit is contained in:
k8s-ci-robot
2018-10-26 14:44:01 -07:00
committed by GitHub

View File

@@ -1552,8 +1552,9 @@ var _ = SIGDescribe("Services", func() {
// to be something else, see if the interval will be reconciled.
It("should reconcile LB health check interval [Slow][Serial]", func() {
const gceHcCheckIntervalSeconds = int64(8)
// This test is for clusters on GCE/GKE.
framework.SkipUnlessProviderIs("gce", "gke")
// This test is for clusters on GCE.
// (It restarts kube-controller-manager, which we don't support on GKE)
framework.SkipUnlessProviderIs("gce")
clusterID, err := gce.GetClusterID(cs)
if err != nil {
framework.Failf("framework.GetClusterID(cs) = _, %v; want nil", err)