Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove config.hypershift check in osde2e test harness #308

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions osde2e/certman_operator_tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ import (
. "github.com/onsi/gomega"
configv1 "github.com/openshift/client-go/config/clientset/versioned/typed/config/v1"
"github.com/openshift/osde2e-common/pkg/clients/openshift"
"github.com/openshift/osde2e/pkg/common/config"
"github.com/spf13/viper"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"sigs.k8s.io/controller-runtime/pkg/log"
Expand All @@ -37,9 +35,6 @@ var _ = Describe("Certman Operator", Ordered, func() {
Expect(err).ShouldNot(HaveOccurred(), "Unable to setup k8s client")
clientset, err = kubernetes.NewForConfig(k8s.GetConfig())
Expect(err).ShouldNot(HaveOccurred(), "Unable to setup Config client")
if viper.GetBool(config.Hypershift) {
Skip("Certman Operator is not supported on HyperShift")
}
})

It("certificate secret exists under openshift-config namespace", func(ctx context.Context) {
Expand Down