mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-19 18:02:01 +00:00
Merge pull request #113059 from ii/promote-replication-controller-scale-test
Promote Read, Replace ReplicationController scale endpoints Conformance - +2 Endpoints
This commit is contained in:
commit
be5ed7bd12
8
test/conformance/testdata/conformance.yaml
vendored
8
test/conformance/testdata/conformance.yaml
vendored
@ -903,6 +903,14 @@
|
||||
Pod or delete and replace it with a new Pod
|
||||
release: v1.13
|
||||
file: test/e2e/apps/rc.go
|
||||
- testname: Replication Controller, get and update ReplicationController scale
|
||||
codename: '[sig-apps] ReplicationController should get and update a ReplicationController
|
||||
scale [Conformance]'
|
||||
description: A ReplicationController is created which MUST succeed. It MUST succeed
|
||||
when reading the ReplicationController scale. When updating the ReplicationController
|
||||
scale it MUST succeed and the field MUST equal the new value.
|
||||
release: v1.26
|
||||
file: test/e2e/apps/rc.go
|
||||
- testname: Replication Controller, release pods
|
||||
codename: '[sig-apps] ReplicationController should release no longer matching pods
|
||||
[Conformance]'
|
||||
|
@ -392,7 +392,14 @@ var _ = SIGDescribe("ReplicationController", func() {
|
||||
})
|
||||
})
|
||||
|
||||
ginkgo.It("should get and update a ReplicationController scale", func() {
|
||||
/*
|
||||
Release: v1.26
|
||||
Testname: Replication Controller, get and update ReplicationController scale
|
||||
Description: A ReplicationController is created which MUST succeed. It MUST
|
||||
succeed when reading the ReplicationController scale. When updating the
|
||||
ReplicationController scale it MUST succeed and the field MUST equal the new value.
|
||||
*/
|
||||
framework.ConformanceIt("should get and update a ReplicationController scale", func() {
|
||||
rcClient := f.ClientSet.CoreV1().ReplicationControllers(ns)
|
||||
rcName := "e2e-rc-" + utilrand.String(5)
|
||||
initialRCReplicaCount := int32(1)
|
||||
|
Loading…
Reference in New Issue
Block a user