Promote server version e2e test to conformance

This commit is contained in:
Stephen Heywood 2020-07-14 02:22:07 +00:00
parent 99d85ef924
commit 236ad47783
2 changed files with 14 additions and 1 deletions

View File

@ -1101,6 +1101,12 @@
events match. Events are produced from writes on a background goroutine.
release: v1.15
file: test/e2e/apimachinery/watch.go
- testname: Confirm a server version
codename: '[sig-api-machinery] server version should find the server version [Conformance]'
description: Ensure that an API server version can be retrieved. Both the major
and minor versions MUST only be an integer.
release: v1.19
file: test/e2e/apimachinery/server_version.go
- testname: DaemonSet-FailedPodCreation
codename: '[sig-apps] Daemon set [Serial] should retry creating failed daemon pods
[Conformance]'

View File

@ -26,7 +26,14 @@ import (
var _ = SIGDescribe("server version", func() {
f := framework.NewDefaultFramework("server-version")
ginkgo.It("should find the server version", func() {
/*
Release : v1.19
Testname: Confirm a server version
Description: Ensure that an API server version can be retrieved.
Both the major and minor versions MUST only be an integer.
*/
framework.ConformanceIt("should find the server version", func() {
ginkgo.By("Request ServerVersion")