Skip to content

Commit 6b0ce67

Browse files
Need to remove blank line from Create an OpenShift Logging instance YAML Field
- Need to remove blank line from Create an OpenShift Logging instance YAML Field. - Here is the documentation link: https://docs.openshift.com/container-platform/4.16/observability/logging/cluster-logging-deploying.html#logging-loki-gui-install_cluster-logging-deploying - Here is the step 11.e YAML config: ~~~ apiVersion: logging.openshift.io/v1 kind: ClusterLogging metadata: name: instance namespace: openshift-logging spec: collection: type: vector logStore: lokistack: name: logging-loki retentionPolicy: application: maxAge: 7d audit: maxAge: 7d infra: maxAge: 7d type: lokistack visualization: type: ocp-console ocpConsole: logsLimit: 15 <<== This is an extra blank line managementState: Managed ~~~ - One extra line exists between the `visualization` section and the `managementState` field. - This extra blank line needs to be removed. - There should be no extra newline characters between the `visualization` section and `managementState`. - Here is the updated configuration looks: ~~~ apiVersion: logging.openshift.io/v1 kind: ClusterLogging metadata: name: instance namespace: openshift-logging spec: collection: type: vector logStore: lokistack: name: logging-loki retentionPolicy: application: maxAge: 7d audit: maxAge: 7d infra: maxAge: 7d type: lokistack visualization: type: ocp-console ocpConsole: logsLimit: 15 managementState: Managed ~~~
1 parent 7377822 commit 6b0ce67

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

modules/logging-loki-gui-install.adoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ spec:
153153
type: ocp-console
154154
ocpConsole:
155155
logsLimit: 15
156-
157156
managementState: Managed
158157
----
159158
<1> Name must be `instance`.

0 commit comments

Comments
 (0)