Skip to content

Commit cf90527

Browse files
akhilnittalaTriona Doyle
authored andcommitted
[GITOPS-9015]: Skip OpenshiftDexConfig when OpenShift Cluster Authentication is based on OIDC Provider (redhat-developer#1070)
* [GITOPS-9015]: Skip OpenshiftDexConfig when OpenShift Cluster Authentication is based on OIDC Provider Signed-off-by: akhil nittala <nakhil@redhat.com> * [GITOPS-9015]: Skip OpenshiftDexConfig when OpenShift Cluster Authentication is based on OIDC Provider Signed-off-by: akhil nittala <nakhil@redhat.com> * [GITOPS-9015]: Skip OpenshiftDexConfig when OpenShift Cluster Authentication is based on OIDC Provider Signed-off-by: akhil nittala <nakhil@redhat.com> * [GITOPS-9015]: Skip OpenshiftDexConfig when OpenShift Cluster Authentication is based on OIDC Provider Signed-off-by: akhil nittala <nakhil@redhat.com> * [GITOPS-9015]: Skip OpenshiftDexConfig when OpenShift Cluster Authentication is based on OIDC Provider Signed-off-by: akhil nittala <nakhil@redhat.com> * fix: restoring tracking labels for cleaning up of orphaned roles and rolebindings Signed-off-by: akhil nittala <nakhil@redhat.com> * [GITOPS-9015]: Skip OpenshiftDexConfig when OpenShift Cluster Authentication is based on OIDC Provider Signed-off-by: akhil nittala <nakhil@redhat.com> * [GITOPS-9015]: Skip OpenshiftDexConfig when OpenShift Cluster Authentication is based on OIDC Provider Signed-off-by: akhil nittala <nakhil@redhat.com> --------- Signed-off-by: akhil nittala <nakhil@redhat.com> Signed-off-by: Triona Doyle <bot@example.com>
1 parent d9a2ba0 commit cf90527

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/openshift/e2e/ginkgo/sequential/1-108_alternate_cluster_roles_cluster_scoped_instance_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ var _ = Describe("GitOps Operator Sequential E2E Tests", func() {
6464
fixture.OutputDebugOnFail(ns)
6565

6666
if testGitOpsNs != nil {
67-
Expect(k8sClient.Delete(ctx, testGitOpsNs)).To(Succeed())
67+
err := k8sClient.Delete(ctx, testGitOpsNs)
68+
Expect(client.IgnoreNotFound(err)).To(Succeed())
6869
}
6970

7071
if cleanupFunc != nil {

0 commit comments

Comments
 (0)