Skip to content

Commit e707a3d

Browse files
authored
fix(operator): Fix operator release pipeline warnings (#14817)
1 parent 81b7818 commit e707a3d

12 files changed

+76
-13
lines changed

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

+10-4
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.0
153-
createdAt: "2024-11-07T09:40:12Z"
153+
createdAt: "2024-11-07T12:42:51Z"
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
1774+
- policy/v1
17751775
resources:
17761776
- poddisruptionbudgets
17771777
verbs:
@@ -1880,7 +1880,10 @@ spec:
18801880
port: 8081
18811881
initialDelaySeconds: 5
18821882
periodSeconds: 10
1883-
resources: {}
1883+
resources:
1884+
requests:
1885+
cpu: 200m
1886+
memory: 256Mi
18841887
securityContext:
18851888
allowPrivilegeEscalation: false
18861889
capabilities:
@@ -1904,7 +1907,10 @@ spec:
19041907
ports:
19051908
- containerPort: 8443
19061909
name: https
1907-
resources: {}
1910+
resources:
1911+
requests:
1912+
cpu: 200m
1913+
memory: 256Mi
19081914
securityContext:
19091915
allowPrivilegeEscalation: false
19101916
capabilities:

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

+10-4
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.0
153-
createdAt: "2024-11-07T09:40:10Z"
153+
createdAt: "2024-11-07T12:42:49Z"
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
1754+
- policy/v1
17551755
resources:
17561756
- poddisruptionbudgets
17571757
verbs:
@@ -1860,7 +1860,10 @@ spec:
18601860
port: 8081
18611861
initialDelaySeconds: 5
18621862
periodSeconds: 10
1863-
resources: {}
1863+
resources:
1864+
requests:
1865+
cpu: 200m
1866+
memory: 256Mi
18641867
volumeMounts:
18651868
- mountPath: /tmp/k8s-webhook-server/serving-certs
18661869
name: webhook-cert
@@ -1878,7 +1881,10 @@ spec:
18781881
ports:
18791882
- containerPort: 8443
18801883
name: https
1881-
resources: {}
1884+
resources:
1885+
requests:
1886+
cpu: 200m
1887+
memory: 256Mi
18821888
securityContext:
18831889
allowPrivilegeEscalation: false
18841890
capabilities:

‎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-07T09:40:14Z"
153+
createdAt: "2024-11-07T12:42:53Z"
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
1759+
- policy/v1
17601760
resources:
17611761
- poddisruptionbudgets
17621762
verbs:

‎operator/config/overlays/community-openshift/kustomization.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@ images:
3131

3232
patches:
3333
- path: manager_related_image_patch.yaml
34+
- path: manager_resource_reqs_patch.yaml
3435
- path: prometheus_service_monitor_patch.yaml

‎operator/config/overlays/community-openshift/manager_related_image_patch.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,12 @@ spec:
1414
value: quay.io/observatorium/api:latest
1515
- name: RELATED_IMAGE_OPA
1616
value: quay.io/observatorium/opa-openshift:latest
17+
resources:
18+
requests:
19+
cpu: 200m
20+
memory: 256Mi
21+
- name: kube-rbac-proxy
22+
resources:
23+
requests:
24+
cpu: 200m
25+
memory: 256Mi
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: controller-manager
5+
spec:
6+
template:
7+
spec:
8+
containers:
9+
- name: manager
10+
resources:
11+
requests:
12+
cpu: 200m
13+
memory: 256Mi
14+
- name: kube-rbac-proxy
15+
resources:
16+
requests:
17+
cpu: 200m
18+
memory: 256Mi

‎operator/config/overlays/community/kustomization.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ images:
4747
patches:
4848
- path: manager_auth_proxy_patch.yaml
4949
- path: manager_related_image_patch.yaml
50+
- path: manager_resource_reqs_patch.yaml
5051
- path: manager_run_flags_patch.yaml
5152
- path: manager_webhook_patch.yaml
5253
- path: webhookcainjection_patch.yaml

‎operator/config/overlays/community/manager_auth_proxy_patch.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ spec:
1616
ports:
1717
- containerPort: 8443
1818
name: https
19+
resources:
20+
requests:
21+
cpu: 200m
22+
memory: 256Mi
1923
securityContext:
2024
allowPrivilegeEscalation: false
2125
capabilities:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: controller-manager
5+
spec:
6+
template:
7+
spec:
8+
containers:
9+
- name: manager
10+
resources:
11+
requests:
12+
cpu: 200m
13+
memory: 256Mi
14+
- name: kube-rbac-proxy
15+
resources:
16+
requests:
17+
cpu: 200m
18+
memory: 256Mi

‎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
149+
- policy/v1
150150
resources:
151151
- poddisruptionbudgets
152152
verbs:

‎operator/docs/operator/compatibility.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The Loki Operator uses client-go to communicate with Kubernetes clusters. The su
2121

2222
Due to the use of CustomResourceDefinitions Kubernetes >= v1.7.0 is required.
2323

24-
Due to the use of apiextensions.k8s.io/v1 CustomResourceDefinitions, requires Kubernetes >= v1.16.0.
24+
Due to the use of apiextensions.k8s.io/v1 CustomResourceDefinitions, requires Kubernetes >= v1.21.0.
2525

2626
## Loki
2727

‎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,resources=poddisruptionbudgets,verbs=get;list;watch;create;update
128+
// +kubebuilder:rbac:groups=policy/v1,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)