mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Merge pull request #48845 from crimsonfaith91/upgrade-test
Automatic merge from submit-queue add [sig-apps] identifier to relevant upgrade tests **What this PR does / why we need it**: This PR adds [sig-apps] identifier to relevant upgrade tests. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: xref #48839 **Special notes for your reviewer**: **Release note**: ```release-note ```
This commit is contained in:
commit
222ac7be1e
@ -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) {
|
||||
|
@ -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
|
||||
|
@ -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) {
|
||||
|
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user