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
Indentation Fault in Viewing Logging status Documentation
- There is one indentation fault in Viewing Logging status Documentation.
- Here is the documentation link: https://docs.openshift.com/container-platform/4.16/observability/logging/troubleshooting/cluster-logging-cluster-status.html#cluster-logging-clo-status_cluster-logging-cluster-status
- Here, the `status.visualization` indentation is wrongly mentioned.
~~~
apiVersion: logging.openshift.io/v1
kind: ClusterLogging
# ...
status:
visualization: <<== visualization indentation is wrongly mentioned
kibanaStatus:
- deployment: kibana
pods:
failed: []
notReady: []
ready:
- kibana-7fb4fd4cc9-f2nls
replicaSets:
- kibana-7fb4fd4cc9
replicas: 1
~~~
- The correct configuration should look like the following:
~~~
apiVersion: logging.openshift.io/v1
kind: ClusterLogging
# ...
status:
visualization: <<=== Correct indentation
kibanaStatus:
- deployment: kibana
pods:
failed: []
notReady: []
ready:
- kibana-7fb4fd4cc9-f2nls
replicaSets:
- kibana-7fb4fd4cc9
replicas: 1
~~~
- Perform this change in our standard documentation.
- I am going to raise PR for this change and work on PR merge.
0 commit comments