Skip to content

Commit 7cf2d6d

Browse files
committed
edited per erik
1 parent b7ac701 commit 7cf2d6d

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

modules/efk-logging-deploy-subscription.adoc

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,29 +108,42 @@ You might need to refresh the page to load the data.
108108
apiVersion: "logging.openshift.io/v1alpha1"
109109
kind: "ClusterLogging"
110110
metadata:
111-
name: "instance"
111+
name: "instance" <1>
112112
namespace: "openshift-logging"
113113
spec:
114-
managementState: "Managed"
114+
managementState: "Managed" <2>
115115
logStore:
116-
type: "elasticsearch"
116+
type: "elasticsearch" <3>
117117
elasticsearch:
118118
nodeCount: 3
119119
storage: {}
120120
redundancyPolicy: "SingleRedundancy"
121121
visualization:
122-
type: "kibana"
122+
type: "kibana" <4>
123123
kibana:
124124
replicas: 1
125125
curation:
126-
type: "curator"
126+
type: "curator" <5>
127127
curator:
128128
schedule: "30 3 * * *"
129129
collection:
130130
logs:
131-
type: "fluentd"
131+
type: "fluentd" <6>
132132
fluentd: {}
133133
----
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. See *Changing cluster logging management state*.
137+
<3> Settings for configuring Elasticsearch. Using the CR, you can configure shard replication policy and persistent storage. 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. See *Configuring Kibana*.
139+
<5> Settings for configuring Curator. Using the CR, you can set the Curator schedule. See *Configuring Curator*.
140+
<6> Settings for configuring Fluentd. Using the CR, you can configure Fluentd CPU and memory limits. 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+
====
134147

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

0 commit comments

Comments
 (0)