mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-01 15:58:37 +00:00
Merge pull request #15062 from mwielgus/gke_deamon
Disable 2 problematic e2e test for deamon for GKE
This commit is contained in:
commit
26be3c3b95
@ -241,6 +241,9 @@ var _ = Describe("DaemonRestart", func() {
|
|||||||
|
|
||||||
It("Scheduler should continue assigning pods to nodes across restart", 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(
|
restarter := NewRestartConfig(
|
||||||
getMasterHost(), "kube-scheduler", ports.SchedulerPort, restartPollInterval, restartTimeout)
|
getMasterHost(), "kube-scheduler", ports.SchedulerPort, restartPollInterval, restartTimeout)
|
||||||
|
|
||||||
@ -256,6 +259,10 @@ var _ = Describe("DaemonRestart", func() {
|
|||||||
})
|
})
|
||||||
|
|
||||||
It("Kubelet should not restart containers across restart", 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)
|
nodeIPs, err := getNodePublicIps(framework.Client)
|
||||||
expectNoError(err)
|
expectNoError(err)
|
||||||
preRestarts, badNodes := getContainerRestarts(framework.Client, ns, labelSelector)
|
preRestarts, badNodes := getContainerRestarts(framework.Client, ns, labelSelector)
|
||||||
|
Loading…
Reference in New Issue
Block a user