Skip to content

Commit e8a5654

Browse files
authored
fix: scope Kuadrant OperatorGroup to kuadrant-system namespace (#153)
The OperatorGroup spec was empty, causing it to watch all namespaces and replicate CSVs cluster-wide. This prevented CRDs from being created and kept all Kuadrant operators in a pending state. Signed-off-by: Brent Salisbury <bsalisbu@redhat.com>
1 parent a285d66 commit e8a5654

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

deployment/scripts/install-dependencies.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,9 @@ kind: OperatorGroup
111111
metadata:
112112
name: kuadrant-operator-group
113113
namespace: kuadrant-system
114-
spec: {}
114+
spec:
115+
targetNamespaces:
116+
- kuadrant-system
115117
EOF
116118

117119
# Check if the CatalogSource already exists before applying

0 commit comments

Comments
 (0)