add [sig-apps] identifier to relevant upgrade tests

This commit is contained in:
Jun Xiang Tee 2017-07-12 16:48:44 -07:00
parent b31d1db4f4
commit c35662b667
4 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ type DaemonSetUpgradeTest struct {
daemonSet *extensions.DaemonSet
}
func (DaemonSetUpgradeTest) Name() string { return "daemonset-upgrade" }
func (DaemonSetUpgradeTest) Name() string { return "[sig-apps] daemonset-upgrade" }
// Setup creates a DaemonSet and verifies that it's running
func (t *DaemonSetUpgradeTest) Setup(f *framework.Framework) {

View File

@ -40,7 +40,7 @@ type DeploymentUpgradeTest struct {
newRS *extensions.ReplicaSet
}
func (DeploymentUpgradeTest) Name() string { return "deployment-upgrade" }
func (DeploymentUpgradeTest) Name() string { return "[sig-apps] deployment-upgrade" }
func (DeploymentUpgradeTest) Skip(upgCtx UpgradeContext) bool {
// The Deployment upgrade test currently relies on implementation details to probe the

View File

@ -31,7 +31,7 @@ type JobUpgradeTest struct {
namespace string
}
func (JobUpgradeTest) Name() string { return "job-upgrade" }
func (JobUpgradeTest) Name() string { return "[sig-apps] job-upgrade" }
// Setup starts a Job with a parallelism of 2 and 2 completions running.
func (t *JobUpgradeTest) Setup(f *framework.Framework) {

View File

@ -34,7 +34,7 @@ type StatefulSetUpgradeTest struct {
set *apps.StatefulSet
}
func (StatefulSetUpgradeTest) Name() string { return "statefulset-upgrade" }
func (StatefulSetUpgradeTest) Name() string { return "[sig-apps] statefulset-upgrade" }
func (StatefulSetUpgradeTest) Skip(upgCtx UpgradeContext) bool {
minVersion := version.MustParseSemantic("1.5.0")