Skip to content

Commit af0e85d

Browse files
Merge pull request #28937 from vrutkovs/cert-collection-skip-hypershift
NO-JIRA: Skip cert collection tests on hypershift
2 parents bae05fb + 6d7218a commit af0e85d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/extended/operators/certs.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ var _ = g.Describe(fmt.Sprintf("[sig-arch][Late][Jira:%q]", "kube-apiserver"), g
9999
if ok, _ := exutil.IsMicroShiftCluster(kubeClient); ok {
100100
g.Skip("microshift does not auto-collect TLS.")
101101
}
102+
configClient := oc.AdminConfigClient()
103+
if ok, _ := exutil.IsHypershift(ctx, configClient); ok {
104+
g.Skip("hypershift does not auto-collect TLS.")
105+
}
102106
var err error
103107
onDiskPKIContent := &certgraphapi.PKIList{}
104108

0 commit comments

Comments
 (0)