Merge pull request #93084 from ii/heyste-get-code-version-test

Promote Check Server Version e2e test to conformance - 1 Endpoint Coverage
This commit is contained in:
Kubernetes Prow Robot 2020-07-18 06:14:50 -07:00 committed by GitHub
commit 3a0b683c01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View File

@ -1108,6 +1108,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")