|
1 | | -// Copyright 2020-2024 the Pinniped contributors. All Rights Reserved. |
| 1 | +// Copyright 2020-2025 the Pinniped contributors. All Rights Reserved. |
2 | 2 | // SPDX-License-Identifier: Apache-2.0 |
3 | 3 |
|
4 | 4 | package integration |
@@ -175,6 +175,12 @@ func TestSupervisorOIDCDiscovery_Disruptive(t *testing.T) { |
175 | 175 | // Never run this test in parallel since deleting all federation domains is disruptive, see main_test.go. |
176 | 176 | func TestSupervisorTLSTerminationWithSNI_Disruptive(t *testing.T) { |
177 | 177 | env := testlib.IntegrationEnv(t) |
| 178 | + |
| 179 | + // This test is flaky on EKS, so skip it. |
| 180 | + if env.KubernetesDistribution == testlib.EKSDistro { |
| 181 | + t.Skipf("skipping integration test on EKS") |
| 182 | + } |
| 183 | + |
178 | 184 | pinnipedClient := testlib.NewSupervisorClientset(t) |
179 | 185 | kubeClient := testlib.NewKubernetesClientset(t) |
180 | 186 |
|
@@ -285,6 +291,12 @@ func TestSupervisorTLSTerminationWithSNI_Disruptive(t *testing.T) { |
285 | 291 | // Never run this test in parallel since deleting all federation domains is disruptive, see main_test.go. |
286 | 292 | func TestSupervisorTLSTerminationWithDefaultCerts_Disruptive(t *testing.T) { |
287 | 293 | env := testlib.IntegrationEnv(t) |
| 294 | + |
| 295 | + // This test is flaky on EKS, so skip it. |
| 296 | + if env.KubernetesDistribution == testlib.EKSDistro { |
| 297 | + t.Skipf("skipping integration test on EKS") |
| 298 | + } |
| 299 | + |
288 | 300 | pinnipedClient := testlib.NewSupervisorClientset(t) |
289 | 301 | kubeClient := testlib.NewKubernetesClientset(t) |
290 | 302 |
|
|
0 commit comments