File tree 12 files changed +76
-13
lines changed
12 files changed +76
-13
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ metadata:
150
150
categories : OpenShift Optional, Logging & Tracing
151
151
certified : " false"
152
152
containerImage : docker.io/grafana/loki-operator:0.7.0
153
- createdAt : " 2024-11-07T09:40:12Z "
153
+ createdAt : " 2024-11-07T12:42:51Z "
154
154
description : The Community Loki Operator provides Kubernetes native deployment
155
155
and management of Loki and related logging components.
156
156
features.operators.openshift.io/disconnected : " true"
@@ -1771,7 +1771,7 @@ spec:
1771
1771
- update
1772
1772
- watch
1773
1773
- apiGroups :
1774
- - policy
1774
+ - policy/v1
1775
1775
resources :
1776
1776
- poddisruptionbudgets
1777
1777
verbs :
@@ -1880,7 +1880,10 @@ spec:
1880
1880
port : 8081
1881
1881
initialDelaySeconds : 5
1882
1882
periodSeconds : 10
1883
- resources : {}
1883
+ resources :
1884
+ requests :
1885
+ cpu : 200m
1886
+ memory : 256Mi
1884
1887
securityContext :
1885
1888
allowPrivilegeEscalation : false
1886
1889
capabilities :
@@ -1904,7 +1907,10 @@ spec:
1904
1907
ports :
1905
1908
- containerPort : 8443
1906
1909
name : https
1907
- resources : {}
1910
+ resources :
1911
+ requests :
1912
+ cpu : 200m
1913
+ memory : 256Mi
1908
1914
securityContext :
1909
1915
allowPrivilegeEscalation : false
1910
1916
capabilities :
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ metadata:
150
150
categories : OpenShift Optional, Logging & Tracing
151
151
certified : " false"
152
152
containerImage : docker.io/grafana/loki-operator:0.7.0
153
- createdAt : " 2024-11-07T09:40:10Z "
153
+ createdAt : " 2024-11-07T12:42:49Z "
154
154
description : The Community Loki Operator provides Kubernetes native deployment
155
155
and management of Loki and related logging components.
156
156
operators.operatorframework.io/builder : operator-sdk-unknown
@@ -1751,7 +1751,7 @@ spec:
1751
1751
- update
1752
1752
- watch
1753
1753
- apiGroups :
1754
- - policy
1754
+ - policy/v1
1755
1755
resources :
1756
1756
- poddisruptionbudgets
1757
1757
verbs :
@@ -1860,7 +1860,10 @@ spec:
1860
1860
port : 8081
1861
1861
initialDelaySeconds : 5
1862
1862
periodSeconds : 10
1863
- resources : {}
1863
+ resources :
1864
+ requests :
1865
+ cpu : 200m
1866
+ memory : 256Mi
1864
1867
volumeMounts :
1865
1868
- mountPath : /tmp/k8s-webhook-server/serving-certs
1866
1869
name : webhook-cert
@@ -1878,7 +1881,10 @@ spec:
1878
1881
ports :
1879
1882
- containerPort : 8443
1880
1883
name : https
1881
- resources : {}
1884
+ resources :
1885
+ requests :
1886
+ cpu : 200m
1887
+ memory : 256Mi
1882
1888
securityContext :
1883
1889
allowPrivilegeEscalation : false
1884
1890
capabilities :
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ metadata:
150
150
categories : OpenShift Optional, Logging & Tracing
151
151
certified : " false"
152
152
containerImage : quay.io/openshift-logging/loki-operator:0.1.0
153
- createdAt : " 2024-11-07T09:40:14Z "
153
+ createdAt : " 2024-11-07T12:42:53Z "
154
154
description : |
155
155
The Loki Operator for OCP provides a means for configuring and managing a Loki stack for cluster logging.
156
156
## Prerequisites and Requirements
@@ -1756,7 +1756,7 @@ spec:
1756
1756
- update
1757
1757
- watch
1758
1758
- apiGroups :
1759
- - policy
1759
+ - policy/v1
1760
1760
resources :
1761
1761
- poddisruptionbudgets
1762
1762
verbs :
Original file line number Diff line number Diff line change @@ -31,4 +31,5 @@ images:
31
31
32
32
patches :
33
33
- path : manager_related_image_patch.yaml
34
+ - path : manager_resource_reqs_patch.yaml
34
35
- path : prometheus_service_monitor_patch.yaml
Original file line number Diff line number Diff line change 14
14
value : quay.io/observatorium/api:latest
15
15
- name : RELATED_IMAGE_OPA
16
16
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 number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ images:
47
47
patches :
48
48
- path : manager_auth_proxy_patch.yaml
49
49
- path : manager_related_image_patch.yaml
50
+ - path : manager_resource_reqs_patch.yaml
50
51
- path : manager_run_flags_patch.yaml
51
52
- path : manager_webhook_patch.yaml
52
53
- path : webhookcainjection_patch.yaml
Original file line number Diff line number Diff line change 16
16
ports :
17
17
- containerPort : 8443
18
18
name : https
19
+ resources :
20
+ requests :
21
+ cpu : 200m
22
+ memory : 256Mi
19
23
securityContext :
20
24
allowPrivilegeEscalation : false
21
25
capabilities :
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ rules:
146
146
- update
147
147
- watch
148
148
- apiGroups :
149
- - policy
149
+ - policy/v1
150
150
resources :
151
151
- poddisruptionbudgets
152
152
verbs :
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ The Loki Operator uses client-go to communicate with Kubernetes clusters. The su
21
21
22
22
Due to the use of CustomResourceDefinitions Kubernetes >= v1.7.0 is required.
23
23
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.
25
25
26
26
## Loki
27
27
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ type LokiStackReconciler struct {
125
125
// +kubebuilder:rbac:urls=/api/v2/alerts,verbs=create
126
126
// +kubebuilder:rbac:groups=coordination.k8s.io,resources=leases,verbs=get;create;update
127
127
// +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
129
129
// +kubebuilder:rbac:groups=config.openshift.io,resources=dnses;apiservers;proxies,verbs=get;list;watch
130
130
// +kubebuilder:rbac:groups=route.openshift.io,resources=routes,verbs=get;list;watch;create;update;delete
131
131
// +kubebuilder:rbac:groups=cloudcredential.openshift.io,resources=credentialsrequests,verbs=get;list;watch;create;update;delete
You can’t perform that action at this time.
0 commit comments