Skip to content

Commit 99071d2

Browse files
authored
Merge pull request #14125 from mburke5678/BZ-1688295
logging CR options not fully documented
2 parents 022c4a5 + a2ff80f commit 99071d2

File tree

2 files changed

+27
-8
lines changed

2 files changed

+27
-8
lines changed

_topic_map.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,12 +451,12 @@ Topics:
451451
File: efk-logging-configuring
452452
- Name: Configuring Elasticsearch
453453
File: efk-logging-elasticsearch
454-
- Name: Configuring Fluentd
455-
File: efk-logging-fluentd
456454
- Name: Configuring Kibana
457455
File: efk-logging-kibana
458456
- Name: Configuring Curator
459457
File: efk-logging-curator
458+
- Name: Configuring Fluentd
459+
File: efk-logging-fluentd
460460
- Name: Deploying and Configuring the Event Router
461461
File: efk-logging-eventrouter
462462
- Name: Configuring systemd-journald and rsyslog

modules/efk-logging-deploy-subscription.adoc

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,12 @@ Then, click *Subscribe*.
7575
.. Ensure that *Cluster Logging* and *Elasticsearch Operator* are listed on
7676
the *InstallSucceeded* tab with a *Status* of *InstallSucceeded*. Change the project to *all projects* if necessary.
7777
+
78+
[NOTE]
79+
====
80+
During installation an operator might display a *Failed* status. If the operator then installs with an *InstallSucceeded* message,
81+
you can safely ignore the *Failed* message.
82+
====
83+
7884
If either operator does not appear as installed, to troubleshoot further:
7985

8086
* On the *Copied* tab of the *Installed Operators* page, if an operator show a *Status* of
@@ -102,29 +108,42 @@ You might need to refresh the page to load the data.
102108
apiVersion: "logging.openshift.io/v1alpha1"
103109
kind: "ClusterLogging"
104110
metadata:
105-
name: "instance"
111+
name: "instance" <1>
106112
namespace: "openshift-logging"
107113
spec:
108-
managementState: "Managed"
114+
managementState: "Managed" <2>
109115
logStore:
110-
type: "elasticsearch"
116+
type: "elasticsearch" <3>
111117
elasticsearch:
112118
nodeCount: 3
113119
storage: {}
114120
redundancyPolicy: "SingleRedundancy"
115121
visualization:
116-
type: "kibana"
122+
type: "kibana" <4>
117123
kibana:
118124
replicas: 1
119125
curation:
120-
type: "curator"
126+
type: "curator" <5>
121127
curator:
122128
schedule: "30 3 * * *"
123129
collection:
124130
logs:
125-
type: "fluentd"
131+
type: "fluentd" <6>
126132
fluentd: {}
127133
----
134+
<1> The name of the Cluster Logging Custom Resource.
135+
<2> The cluster logging management state. In most cases, if you change the default cluster logging defaults, you will need to set this to `Unmanaged`.
136+
However, an unmanaged deployment does not receive updates until the cluster logging is placed back into a managed state. For more information, see *Changing cluster logging management state*.
137+
<3> Settings for configuring Elasticsearch. Using the CR, you can configure shard replication policy and persistent storage. For more information, see *Configuring Elasticsearch*.
138+
<4> 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 Kibana*.
139+
<5> Settings for configuring Curator. Using the CR, you can set the Curator schedule. For more information, see *Configuring Curator*.
140+
<6> Settings for configuring Fluentd. Using the CR, you can configure Fluentd CPU and memory limits. For more information, see *Configuring Fluentd*.
141+
+
142+
[NOTE]
143+
====
144+
The default cluster logging configuration should support a wide array of environments. Review the topics on tuning and
145+
configuring the cluster logging components for information on modifications you can make to your cluster logging cluster.
146+
====
128147

129148
.. Click *Create*. This creates the Cluster Logging Custom Resource, which you
130149
can edit to make changes to your cluster logging cluster.

0 commit comments

Comments
 (0)