You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/cluster-logging-deploy-cli.adoc
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -311,9 +311,10 @@ spec:
311
311
redundancyPolicy: "SingleRedundancy"
312
312
nodeSelector:
313
313
node-role.kubernetes.io/worker: ""
314
-
resources:
315
-
request:
316
-
memory: 8G
314
+
limits:
315
+
memory: "16Gi"
316
+
requests:
317
+
memory: "16Gi"
317
318
visualization:
318
319
type: "kibana"
319
320
kibana:
@@ -354,8 +355,10 @@ spec:
354
355
storageClassName: "<storage-class-name>" <6>
355
356
size: 200G
356
357
resources: <7>
358
+
limits:
359
+
memory: "16Gi"
357
360
requests:
358
-
memory: "8Gi"
361
+
memory: "16Gi"
359
362
proxy: <8>
360
363
resources:
361
364
limits:
@@ -379,7 +382,7 @@ However, an unmanaged deployment does not receive updates until OpenShift Loggin
379
382
<4> Specify the length of time that Elasticsearch should retain each log source. Enter an integer and a time designation: weeks(w), hours(h/H), minutes(m) and seconds(s). For example, `7d` for seven days. Logs older than the `maxAge` are deleted. You must specify a retention policy for each log source or the Elasticsearch indices will not be created for that source.
380
383
<5> Specify the number of Elasticsearch nodes. See the note that follows this list.
381
384
<6> Enter the name of an existing storage class for Elasticsearch storage. For best performance, specify a storage class that allocates block storage. If you do not specify a storage class, {product-title} deploys OpenShift Logging with ephemeral storage only.
382
-
<7> Specify the CPU and memory requests for Elasticsearch as needed. If you leave these values blank, the OpenShift Elasticsearch Operator sets default values that should be sufficient for most deployments. The default values are `16G` for the memory request and `1` for the CPU request.
385
+
<7> Specify the CPU and memory requests for Elasticsearch as needed. If you leave these values blank, the OpenShift Elasticsearch Operator sets default values that are sufficient for most deployments. The default values are `16Gi` for the memory request and `1` for the CPU request.
383
386
<8> Specify the CPU and memory requests for the Elasticsearch proxy as needed. If you leave these values blank, the OpenShift Elasticsearch Operator sets default values that should be sufficient for most deployments. The default values are `256Mi` for the memory request and `100m` for the CPU request.
384
387
<9> Settings for configuring Kibana. Using the CR, you can scale Kibana for redundancy and configure the CPU and memory for your Kibana pods. For more information, see *Configuring the log visualizer*.
385
388
<10> Settings for configuring Fluentd. Using the CR, you can configure Fluentd CPU and memory limits. For more information, see *Configuring Fluentd*.
Copy file name to clipboardExpand all lines: modules/cluster-logging-deploy-console.adoc
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -154,8 +154,10 @@ spec:
154
154
nodeSelector:
155
155
node-role.kubernetes.io/worker: ""
156
156
resources:
157
+
limits:
158
+
memory: "16Gi"
157
159
request:
158
-
memory: 8G
160
+
memory: "16Gi"
159
161
visualization:
160
162
type: "kibana"
161
163
kibana:
@@ -196,14 +198,16 @@ spec:
196
198
storageClassName: "<storage_class_name>" <6>
197
199
size: 200G
198
200
resources: <7>
199
-
requests:
200
-
memory: "8Gi"
201
+
limits:
202
+
memory: "16Gi"
203
+
requests:
204
+
memory: "16Gi"
201
205
proxy: <8>
202
206
resources:
203
207
limits:
204
208
memory: 256Mi
205
209
requests:
206
-
memory: 256Mi
210
+
memory: 256Mi
207
211
redundancyPolicy: "SingleRedundancy"
208
212
visualization:
209
213
type: "kibana" <9>
@@ -221,7 +225,7 @@ However, an unmanaged deployment does not receive updates until OpenShift Loggin
221
225
<4> Specify the length of time that Elasticsearch should retain each log source. Enter an integer and a time designation: weeks(w), hours(h/H), minutes(m) and seconds(s). For example, `7d` for seven days. Logs older than the `maxAge` are deleted. You must specify a retention policy for each log source or the Elasticsearch indices will not be created for that source.
222
226
<5> Specify the number of Elasticsearch nodes. See the note that follows this list.
223
227
<6> Enter the name of an existing storage class for Elasticsearch storage. For best performance, specify a storage class that allocates block storage. If you do not specify a storage class, OpenShift Logging uses ephemeral storage.
224
-
<7> Specify the CPU and memory requests for Elasticsearch as needed. If you leave these values blank, the OpenShift Elasticsearch Operator sets default values that should be sufficient for most deployments. The default values are `16G` for the memory request and `1` for the CPU request.
228
+
<7> Specify the CPU and memory requests for Elasticsearch as needed. If you leave these values blank, the OpenShift Elasticsearch Operator sets default values that should be sufficient for most deployments. The default values are `16Gi` for the memory request and `1` for the CPU request.
225
229
<8> Specify the CPU and memory requests for the Elasticsearch proxy as needed. If you leave these values blank, the OpenShift Elasticsearch Operator sets default values that should be sufficient for most deployments. The default values are `256Mi` for the memory request and `100m` for the CPU request.
226
230
<9> Settings for configuring Kibana. Using the CR, you can scale Kibana for redundancy and configure the CPU and memory for your Kibana nodes. For more information, see *Configuring the log visualizer*.
227
231
<10> Settings for configuring Fluentd. Using the CR, you can configure Fluentd CPU and memory limits. For more information, see *Configuring Fluentd*.
|This label suggests how much resources the container image needs to work properly. The UI can warn the user that deploying this container image may exceed their user quota. The values must be compatible with Kubernetes quantity.
0 commit comments