Skip to content

Commit 1660c46

Browse files
ClusterLogForwarder example in About logging 6.0 section is not defined properly
ClusterLogForwarder example in About logging 6.0 section is not defined properly Inside About Logging 6.0 section in Quick Start, the step number 9." Create a ClusterLogForwarder CR to configure log forwarding is not defined properly. Link: https://docs.openshift.com/container-platform/4.17/observability/logging/logging-6.0/log6x-about.html#quick-start Current Configuration: ~~~ spec: serviceAccount: name: collector outputs: - name: default-lokistack type: lokiStack lokiStack: target: name: logging-loki namespace: openshift-logging authentication: token: from: serviceAccount tls: ca: key: service-ca.crt configMapName: openshift-service-ca.crt ~~~ Need to perform the following changes: ~~~ spec: serviceAccount: name: collector outputs: - name: default-lokistack type: lokiStack lokiStack: target: name: logging-loki namespace: openshift-logging authentication: <<=== Correct Indentation token: <<=== Correct Indentation from: serviceAccount <<=== Correct Indentation tls: ca: key: service-ca.crt configMapName: openshift-service-ca.crt ~~~
1 parent 39fd84a commit 1660c46

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

observability/logging/logging-6.0/log6x-about.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@ spec:
148148
target:
149149
name: logging-loki
150150
namespace: openshift-logging
151-
authentication:
152-
token:
153-
from: serviceAccount
151+
authentication:
152+
token:
153+
from: serviceAccount
154154
tls:
155155
ca:
156156
key: service-ca.crt
@@ -164,4 +164,4 @@ spec:
164164
- default-lokistack
165165
----
166166

167-
. Verify that logs are visible in the Log section of the Observe tab in the OpenShift web console.
167+
. Verify that logs are visible in the Log section of the Observe tab in the OpenShift web console.

0 commit comments

Comments
 (0)