From 0d42fca78a0ab16f79439d5bf0d5534f1ce54c4e Mon Sep 17 00:00:00 2001 From: Gaelle Fournier Date: Wed, 3 Apr 2024 13:54:21 +0200 Subject: [PATCH] fix(cli): openshift cli install rbac path --- pkg/install/operator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/install/operator.go b/pkg/install/operator.go index 0577e2b66f..4c2d0aae50 100644 --- a/pkg/install/operator.go +++ b/pkg/install/operator.go @@ -464,7 +464,7 @@ func installClusterRoleBinding(ctx context.Context, c client.Client, collection func installOpenShiftRoles(ctx context.Context, c client.Client, namespace string, customizer ResourceCustomizer, collection *kubernetes.Collection, force bool, global bool) error { if global { return ResourcesOrCollect(ctx, c, namespace, collection, force, customizer, - "/config/openshift/descoped/operator-cluster-role-openshift.yaml", + "/config/rbac/openshift/descoped/operator-cluster-role-openshift.yaml", "/config/rbac/openshift/descoped/operator-cluster-role-binding-openshift.yaml", ) } else {