Skip to content

Commit

Permalink
Merge pull request kubernetes#15062 from mwielgus/gke_deamon
Browse files Browse the repository at this point in the history
Disable 2 problematic e2e test for deamon for GKE
  • Loading branch information
mwielgus committed Oct 5, 2015
2 parents ad9be2c + 2519ebe commit 26be3c3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/e2e/daemon_restart.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,9 @@ var _ = Describe("DaemonRestart", func() {

It("Scheduler should continue assigning pods to nodes across restart", func() {

// TODO: Enabale this test in GKE once experimental API there is switched on
SkipIfProviderIs("gke")

restarter := NewRestartConfig(
getMasterHost(), "kube-scheduler", ports.SchedulerPort, restartPollInterval, restartTimeout)

Expand All @@ -256,6 +259,10 @@ var _ = Describe("DaemonRestart", func() {
})

It("Kubelet should not restart containers across restart", func() {

// TODO: Enabale this test in GKE once experimental API there is switched on
SkipIfProviderIs("gke")

nodeIPs, err := getNodePublicIps(framework.Client)
expectNoError(err)
preRestarts, badNodes := getContainerRestarts(framework.Client, ns, labelSelector)
Expand Down

0 comments on commit 26be3c3

Please sign in to comment.