Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

StatefulSet Upgrade Test #41221

Merged
merged 1 commit into from Feb 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions test/e2e/cluster_upgrade.go
Expand Up @@ -32,6 +32,7 @@ import (
var upgradeTests = []upgrades.Test{
&upgrades.ServiceUpgradeTest{},
&upgrades.SecretUpgradeTest{},
&upgrades.StatefulSetUpgradeTest{},
&upgrades.DeploymentUpgradeTest{},
}

Expand Down
2 changes: 1 addition & 1 deletion test/e2e/examples.go
Expand Up @@ -330,7 +330,7 @@ var _ = framework.KubeDescribe("[Feature:Example]", func() {
}
})
// using out of statefulset e2e as deleting pvc is a pain
deleteAllStatefulSets(c, ns)
framework.DeleteAllStatefulSets(c, ns)
})
})

Expand Down
3 changes: 3 additions & 0 deletions test/e2e/framework/BUILD
Expand Up @@ -27,6 +27,7 @@ go_library(
"pods.go",
"resource_usage_gatherer.go",
"service_util.go",
"statefulset_utils.go",
"test_context.go",
"util.go",
],
Expand Down Expand Up @@ -86,6 +87,7 @@ go_library(
"//vendor:google.golang.org/api/compute/v1",
"//vendor:google.golang.org/api/googleapi",
"//vendor:k8s.io/apimachinery/pkg/api/errors",
"//vendor:k8s.io/apimachinery/pkg/api/resource",
"//vendor:k8s.io/apimachinery/pkg/apis/meta/v1",
"//vendor:k8s.io/apimachinery/pkg/apis/meta/v1/unstructured",
"//vendor:k8s.io/apimachinery/pkg/fields",
Expand All @@ -102,6 +104,7 @@ go_library(
"//vendor:k8s.io/apimachinery/pkg/util/uuid",
"//vendor:k8s.io/apimachinery/pkg/util/validation",
"//vendor:k8s.io/apimachinery/pkg/util/wait",
"//vendor:k8s.io/apimachinery/pkg/util/yaml",
"//vendor:k8s.io/apimachinery/pkg/watch",
"//vendor:k8s.io/client-go/discovery",
"//vendor:k8s.io/client-go/dynamic",
Expand Down