From 4a643535e6ea8f67ac00961ed1d242fce16ce748 Mon Sep 17 00:00:00 2001
From: Sheogorath <sheogorath@shivering-isles.com>
Date: Thu, 7 Mar 2024 22:22:21 +0100
Subject: [PATCH] fix: Add missing permission for CRD creation

---
 manifests/clusterrole.yaml | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/manifests/clusterrole.yaml b/manifests/clusterrole.yaml
index f1881383..471aa079 100644
--- a/manifests/clusterrole.yaml
+++ b/manifests/clusterrole.yaml
@@ -11,6 +11,17 @@ rules:
   - get
   - list
   - watch
+- apiGroups:
+  - "apiextensions.k8s.io"
+  resources:
+  - customresourcedefinitions
+  verbs:
+  - get
+  - list
+  - watch
+  - create
+  - patch
+  - update
 - apiGroups:
   - ""
   resources:
-- 
GitLab