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/efk-logging-deploy-subscription.adoc
+19-6Lines changed: 19 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -108,29 +108,42 @@ You might need to refresh the page to load the data.
108
108
apiVersion: "logging.openshift.io/v1alpha1"
109
109
kind: "ClusterLogging"
110
110
metadata:
111
-
name: "instance"
111
+
name: "instance" <1>
112
112
namespace: "openshift-logging"
113
113
spec:
114
-
managementState: "Managed"
114
+
managementState: "Managed" <2>
115
115
logStore:
116
-
type: "elasticsearch"
116
+
type: "elasticsearch" <3>
117
117
elasticsearch:
118
118
nodeCount: 3
119
119
storage: {}
120
120
redundancyPolicy: "SingleRedundancy"
121
121
visualization:
122
-
type: "kibana"
122
+
type: "kibana" <4>
123
123
kibana:
124
124
replicas: 1
125
125
curation:
126
-
type: "curator"
126
+
type: "curator" <5>
127
127
curator:
128
128
schedule: "30 3 * * *"
129
129
collection:
130
130
logs:
131
-
type: "fluentd"
131
+
type: "fluentd" <6>
132
132
fluentd: {}
133
133
----
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
+
====
134
147
135
148
.. Click *Create*. This creates the Cluster Logging Custom Resource, which you
136
149
can edit to make changes to your cluster logging cluster.
0 commit comments