@@ -42,10 +42,8 @@ var _ = SIGDescribe("SelfSubjectReview", func() {
42
42
Testname: SelfSubjectReview API
43
43
Description:
44
44
The authentication.k8s.io API group MUST exist in the /apis discovery document.
45
- The authentication.k8s.io/v1alpha1 API group/version MUST exist in the /apis/mode.k8s.io discovery document.
46
45
The authentication.k8s.io/v1beta1 API group/version MUST exist in the /apis/mode.k8s.io discovery document.
47
46
The authentication.k8s.io/v1 API group/version MUST exist in the /apis/mode.k8s.io discovery document.
48
- The selfsubjectreviews resource MUST exist in the /apis/authentication.k8s.io/v1alpha1 discovery document.
49
47
The selfsubjectreviews resource MUST exist in the /apis/authentication.k8s.io/v1beta1 discovery document.
50
48
The selfsubjectreviews resource MUST exist in the /apis/authentication.k8s.io/v1 discovery document.
51
49
The selfsubjectreviews resource MUST support create.
@@ -107,7 +105,8 @@ var _ = SIGDescribe("SelfSubjectReview", func() {
107
105
}
108
106
}
109
107
},
110
- ginkgo .Entry ("authentication/v1alpha1" , "v1alpha1" , authenticationv1alpha1 .SchemeGroupVersion .String ()),
108
+ // OpenShift: Skip v1alpha check
109
+ // ginkgo.Entry("authentication/v1alpha1", "v1alpha1", authenticationv1alpha1.SchemeGroupVersion.String()),
111
110
ginkgo .Entry ("authentication/v1beta1" , "v1beta1" , authenticationv1beta1 .SchemeGroupVersion .String ()),
112
111
ginkgo .Entry ("authentication/v1" , "v1" , authenticationv1 .SchemeGroupVersion .String ()),
113
112
)
@@ -116,6 +115,9 @@ var _ = SIGDescribe("SelfSubjectReview", func() {
116
115
// Check creating
117
116
ginkgo .By ("creating SSR authentication/v1alpha1" )
118
117
{
118
+ // OpenShift: Skip v1alpha check
119
+ ginkgo .Skip ("No authentication/v1alpha1 available" )
120
+
119
121
// Use impersonate to make user attributes predictable
120
122
config := restConfig (f )
121
123
0 commit comments