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
+25-6Lines changed: 25 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -75,6 +75,12 @@ Then, click *Subscribe*.
75
75
.. Ensure that *Cluster Logging* and *Elasticsearch Operator* are listed on
76
76
the *InstallSucceeded* tab with a *Status* of *InstallSucceeded*. Change the project to *all projects* if necessary.
77
77
+
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
+
78
84
If either operator does not appear as installed, to troubleshoot further:
79
85
80
86
* 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.
102
108
apiVersion: "logging.openshift.io/v1alpha1"
103
109
kind: "ClusterLogging"
104
110
metadata:
105
-
name: "instance"
111
+
name: "instance" <1>
106
112
namespace: "openshift-logging"
107
113
spec:
108
-
managementState: "Managed"
114
+
managementState: "Managed" <2>
109
115
logStore:
110
-
type: "elasticsearch"
116
+
type: "elasticsearch" <3>
111
117
elasticsearch:
112
118
nodeCount: 3
113
119
storage: {}
114
120
redundancyPolicy: "SingleRedundancy"
115
121
visualization:
116
-
type: "kibana"
122
+
type: "kibana" <4>
117
123
kibana:
118
124
replicas: 1
119
125
curation:
120
-
type: "curator"
126
+
type: "curator" <5>
121
127
curator:
122
128
schedule: "30 3 * * *"
123
129
collection:
124
130
logs:
125
-
type: "fluentd"
131
+
type: "fluentd" <6>
126
132
fluentd: {}
127
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. 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
+
====
128
147
129
148
.. Click *Create*. This creates the Cluster Logging Custom Resource, which you
130
149
can edit to make changes to your cluster logging cluster.
0 commit comments