Skip to content

Commit f00d07a

Browse files
authored
fix(operator): Fix RBAC permission for poddisruptionbudgets (#15107)
1 parent 38fcef3 commit f00d07a

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

‎operator/bundle/community-openshift/manifests/loki-operator.clusterserviceversion.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ metadata:
150150
categories: OpenShift Optional, Logging & Tracing
151151
certified: "false"
152152
containerImage: docker.io/grafana/loki-operator:0.7.1
153-
createdAt: "2024-11-08T17:18:30Z"
153+
createdAt: "2024-11-25T18:28:02Z"
154154
description: The Community Loki Operator provides Kubernetes native deployment
155155
and management of Loki and related logging components.
156156
features.operators.openshift.io/disconnected: "true"
@@ -1771,7 +1771,7 @@ spec:
17711771
- update
17721772
- watch
17731773
- apiGroups:
1774-
- policy/v1
1774+
- policy
17751775
resources:
17761776
- poddisruptionbudgets
17771777
verbs:

‎operator/bundle/community/manifests/loki-operator.clusterserviceversion.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ metadata:
150150
categories: OpenShift Optional, Logging & Tracing
151151
certified: "false"
152152
containerImage: docker.io/grafana/loki-operator:0.7.1
153-
createdAt: "2024-11-08T17:18:28Z"
153+
createdAt: "2024-11-25T18:27:59Z"
154154
description: The Community Loki Operator provides Kubernetes native deployment
155155
and management of Loki and related logging components.
156156
operators.operatorframework.io/builder: operator-sdk-unknown
@@ -1751,7 +1751,7 @@ spec:
17511751
- update
17521752
- watch
17531753
- apiGroups:
1754-
- policy/v1
1754+
- policy
17551755
resources:
17561756
- poddisruptionbudgets
17571757
verbs:

‎operator/bundle/openshift/manifests/loki-operator.clusterserviceversion.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ metadata:
150150
categories: OpenShift Optional, Logging & Tracing
151151
certified: "false"
152152
containerImage: quay.io/openshift-logging/loki-operator:0.1.0
153-
createdAt: "2024-11-08T17:18:32Z"
153+
createdAt: "2024-11-25T18:28:06Z"
154154
description: |
155155
The Loki Operator for OCP provides a means for configuring and managing a Loki stack for cluster logging.
156156
## Prerequisites and Requirements
@@ -1756,7 +1756,7 @@ spec:
17561756
- update
17571757
- watch
17581758
- apiGroups:
1759-
- policy/v1
1759+
- policy
17601760
resources:
17611761
- poddisruptionbudgets
17621762
verbs:

‎operator/config/rbac/role.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ rules:
146146
- update
147147
- watch
148148
- apiGroups:
149-
- policy/v1
149+
- policy
150150
resources:
151151
- poddisruptionbudgets
152152
verbs:

‎operator/internal/controller/loki/lokistack_controller.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ type LokiStackReconciler struct {
125125
// +kubebuilder:rbac:urls=/api/v2/alerts,verbs=create
126126
// +kubebuilder:rbac:groups=coordination.k8s.io,resources=leases,verbs=get;create;update
127127
// +kubebuilder:rbac:groups=networking.k8s.io,resources=ingresses,verbs=get;list;watch;create;update
128-
// +kubebuilder:rbac:groups=policy/v1,resources=poddisruptionbudgets,verbs=get;list;watch;create;update
128+
// +kubebuilder:rbac:groups=policy,resources=poddisruptionbudgets,verbs=get;list;watch;create;update
129129
// +kubebuilder:rbac:groups=config.openshift.io,resources=dnses;apiservers;proxies,verbs=get;list;watch
130130
// +kubebuilder:rbac:groups=route.openshift.io,resources=routes,verbs=get;list;watch;create;update;delete
131131
// +kubebuilder:rbac:groups=cloudcredential.openshift.io,resources=credentialsrequests,verbs=get;list;watch;create;update;delete

0 commit comments

Comments
 (0)