mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-27 21:47:07 +00:00
Merge pull request #99495 from wojtek-t/cleanup_describe_8
Move ownership of core events test to sig-instrumentation
This commit is contained in:
commit
16e9c682ff
@ -1,8 +1,10 @@
|
|||||||
# See the OWNERS docs at https://go.k8s.io/owners
|
# See the OWNERS docs at https://go.k8s.io/owners
|
||||||
|
|
||||||
approvers:
|
approvers:
|
||||||
|
- sig-instrumentation-approvers
|
||||||
- yastij
|
- yastij
|
||||||
- wojtek-t
|
- wojtek-t
|
||||||
reviewers:
|
reviewers:
|
||||||
|
- sig-instrumentation-reviewers
|
||||||
- yastij
|
- yastij
|
||||||
- wojtek-t
|
- wojtek-t
|
||||||
|
@ -1,27 +1,6 @@
|
|||||||
# See the OWNERS docs at https://go.k8s.io/owners
|
# See the OWNERS docs at https://go.k8s.io/owners
|
||||||
|
|
||||||
reviewers:
|
reviewers:
|
||||||
- lavalamp
|
- sig-instrumentation-reviewers
|
||||||
- smarterclayton
|
approvers:
|
||||||
- wojtek-t
|
- sig-instrumentation-approvers
|
||||||
- deads2k
|
|
||||||
- derekwaynecarr
|
|
||||||
- caesarxuchao
|
|
||||||
- vishh
|
|
||||||
- mikedanese
|
|
||||||
- liggitt
|
|
||||||
- erictune
|
|
||||||
- pmorie
|
|
||||||
- dchen1107
|
|
||||||
- saad-ali
|
|
||||||
- luxas
|
|
||||||
- yifan-gu
|
|
||||||
- mwielgus
|
|
||||||
- timothysc
|
|
||||||
- jsafrane
|
|
||||||
- dims
|
|
||||||
- krousey
|
|
||||||
- a-robinson
|
|
||||||
- aveshagarwal
|
|
||||||
- resouer
|
|
||||||
- cjcullen
|
|
||||||
|
30
test/conformance/testdata/conformance.yaml
vendored
30
test/conformance/testdata/conformance.yaml
vendored
@ -317,21 +317,6 @@
|
|||||||
return a valid PreferredVersion unless the group suffix is example.com.
|
return a valid PreferredVersion unless the group suffix is example.com.
|
||||||
release: v1.19
|
release: v1.19
|
||||||
file: test/e2e/apimachinery/discovery.go
|
file: test/e2e/apimachinery/discovery.go
|
||||||
- testname: Event, delete a collection
|
|
||||||
codename: '[sig-api-machinery] Events should delete a collection of events [Conformance]'
|
|
||||||
description: A set of events is created with a label selector which MUST be found
|
|
||||||
when listed. The set of events is deleted and MUST NOT show up when listed by
|
|
||||||
its label selector.
|
|
||||||
release: v1.20
|
|
||||||
file: test/e2e/apimachinery/events.go
|
|
||||||
- testname: Event resource lifecycle
|
|
||||||
codename: '[sig-api-machinery] Events should ensure that an event can be fetched,
|
|
||||||
patched, deleted, and listed [Conformance]'
|
|
||||||
description: Create an event, the event MUST exist. The event is patched with a
|
|
||||||
new message, the check MUST have the update message. The event is deleted and
|
|
||||||
MUST NOT show up when listing all events.
|
|
||||||
release: v1.20
|
|
||||||
file: test/e2e/apimachinery/events.go
|
|
||||||
- testname: Garbage Collector, delete deployment, propagation policy background
|
- testname: Garbage Collector, delete deployment, propagation policy background
|
||||||
codename: '[sig-api-machinery] Garbage collector should delete RS created by deployment
|
codename: '[sig-api-machinery] Garbage collector should delete RS created by deployment
|
||||||
when not orphaning [Conformance]'
|
when not orphaning [Conformance]'
|
||||||
@ -1095,6 +1080,21 @@
|
|||||||
show up when listing all events.
|
show up when listing all events.
|
||||||
release: v1.19
|
release: v1.19
|
||||||
file: test/e2e/instrumentation/events.go
|
file: test/e2e/instrumentation/events.go
|
||||||
|
- testname: Event, delete a collection
|
||||||
|
codename: '[sig-instrumentation] Events should delete a collection of events [Conformance]'
|
||||||
|
description: A set of events is created with a label selector which MUST be found
|
||||||
|
when listed. The set of events is deleted and MUST NOT show up when listed by
|
||||||
|
its label selector.
|
||||||
|
release: v1.20
|
||||||
|
file: test/e2e/instrumentation/core_events.go
|
||||||
|
- testname: Event resource lifecycle
|
||||||
|
codename: '[sig-instrumentation] Events should ensure that an event can be fetched,
|
||||||
|
patched, deleted, and listed [Conformance]'
|
||||||
|
description: Create an event, the event MUST exist. The event is patched with a
|
||||||
|
new message, the check MUST have the update message. The event is deleted and
|
||||||
|
MUST NOT show up when listing all events.
|
||||||
|
release: v1.20
|
||||||
|
file: test/e2e/instrumentation/core_events.go
|
||||||
- testname: DNS, cluster
|
- testname: DNS, cluster
|
||||||
codename: '[sig-network] DNS should provide /etc/hosts entries for the cluster [LinuxOnly]
|
codename: '[sig-network] DNS should provide /etc/hosts entries for the cluster [LinuxOnly]
|
||||||
[Conformance]'
|
[Conformance]'
|
||||||
|
@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
|
|||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package apimachinery
|
package instrumentation
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
@ -25,6 +25,7 @@ import (
|
|||||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||||
"k8s.io/apimachinery/pkg/util/wait"
|
"k8s.io/apimachinery/pkg/util/wait"
|
||||||
"k8s.io/kubernetes/test/e2e/framework"
|
"k8s.io/kubernetes/test/e2e/framework"
|
||||||
|
"k8s.io/kubernetes/test/e2e/instrumentation/common"
|
||||||
|
|
||||||
"github.com/onsi/ginkgo"
|
"github.com/onsi/ginkgo"
|
||||||
"k8s.io/apimachinery/pkg/types"
|
"k8s.io/apimachinery/pkg/types"
|
||||||
@ -35,7 +36,7 @@ const (
|
|||||||
eventRetryTimeout = 1 * time.Minute
|
eventRetryTimeout = 1 * time.Minute
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ = SIGDescribe("Events", func() {
|
var _ = common.SIGDescribe("Events", func() {
|
||||||
f := framework.NewDefaultFramework("events")
|
f := framework.NewDefaultFramework("events")
|
||||||
|
|
||||||
/*
|
/*
|
Loading…
Reference in New Issue
Block a user