Unverified Commit 1355e6b2 authored by k8s-ci-robot's avatar k8s-ci-robot Committed by GitHub

Merge pull request #70283 from justinsb/only_reconcile_health_check_on_gce

e2e: Only do LB health check reconciliation test on GCE
parents 117c6177 4f3aafd6
...@@ -1552,8 +1552,9 @@ var _ = SIGDescribe("Services", func() { ...@@ -1552,8 +1552,9 @@ var _ = SIGDescribe("Services", func() {
// to be something else, see if the interval will be reconciled. // to be something else, see if the interval will be reconciled.
It("should reconcile LB health check interval [Slow][Serial]", func() { It("should reconcile LB health check interval [Slow][Serial]", func() {
const gceHcCheckIntervalSeconds = int64(8) const gceHcCheckIntervalSeconds = int64(8)
// This test is for clusters on GCE/GKE. // This test is for clusters on GCE.
framework.SkipUnlessProviderIs("gce", "gke") // (It restarts kube-controller-manager, which we don't support on GKE)
framework.SkipUnlessProviderIs("gce")
clusterID, err := gce.GetClusterID(cs) clusterID, err := gce.GetClusterID(cs)
if err != nil { if err != nil {
framework.Failf("framework.GetClusterID(cs) = _, %v; want nil", err) framework.Failf("framework.GetClusterID(cs) = _, %v; want nil", err)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment