mirror of https://github.com/k3s-io/k3s
Merge pull request #61560 from apelisse/fix-failing-ui-dashboard-1.10
Automatic merge from submit-queue (batch tested with PRs 57658, 61304, 61560, 61859, 61870). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. test: Disable ui dashboard test for gke The dashboard is disabled on GKE 1.10, the test is failing because it's not alive. Let's just skip this use-case, and keep a todo that it'd be nice to enable the dashboard to test it. **What this PR does / why we need it**: Disable dashboard test for GKE. **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes #61559 **Special notes for your reviewer**: **Release note**: ```release-note NONE ``` cc @mml @konrydpull/8/head
commit
bc2cc5a75d
|
@ -33,6 +33,11 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ = SIGDescribe("Kubernetes Dashboard", func() {
|
var _ = SIGDescribe("Kubernetes Dashboard", func() {
|
||||||
|
BeforeEach(func() {
|
||||||
|
// TODO(kubernetes/kubernetes#61559): Enable dashboard here rather than skip the test.
|
||||||
|
framework.SkipIfProviderIs("gke")
|
||||||
|
})
|
||||||
|
|
||||||
const (
|
const (
|
||||||
uiServiceName = "kubernetes-dashboard"
|
uiServiceName = "kubernetes-dashboard"
|
||||||
uiAppName = uiServiceName
|
uiAppName = uiServiceName
|
||||||
|
|
Loading…
Reference in New Issue