-
Notifications
You must be signed in to change notification settings - Fork 1.8k
(enterprise-4.16) Indentation fault in Configuring CPU and memory limits for logging components in Documentation #86114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…mponents in Documentation Indentation fault in Configuring CPU and memory limits for logging components in Documentation. Here is the documentation link: https://docs.openshift.com/container-platform/4.16/observability/logging/config/cluster-logging-memory.html#cluster-logging-memory-limits_cluster-logging-memory Here, `spec.collection` indentation is wrongly mentioned. ~~~ apiVersion: "logging.openshift.io/v1" kind: "ClusterLogging" metadata: name: "instance" namespace: openshift-logging spec: collection: <<== collection indentation is wrongly mentioned resources: limits: memory: 736Mi requests: cpu: 200m memory: 736Mi type: fluentd ~~~ -Due to this `spec.collection` will not get applied in the `ClusterLogging` instance CR. -The correct configuration should look like the following: ~~~ apiVersion: "logging.openshift.io/v1" kind: "ClusterLogging" metadata: name: "instance" namespace: openshift-logging spec: collection: <<== Here is correct indentation resources: limits: memory: 736Mi requests: cpu: 200m memory: 736Mi type: fluentd ~~~
@prithvipatil97: all tests passed! Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
/label peer-review-needed |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Be sure to get QE approval before you move this to merge review. Thanks!
Hello @lahinson , Thanks again. |
Hello Team, Thanks in advance. |
LGTM |
Hello @anpingli , |
/label merge-review-needed |
Indentation fault in Configuring CPU and memory limits for logging components in Documentation.
Here is the documentation link:
https://docs.openshift.com/container-platform/4.16/observability/logging/config/cluster-logging-memory.html#cluster-logging-memory-limits_cluster-logging-memory
Here,
spec.collection
indentation is wrongly mentioned.spec.collection
will not get applied in theClusterLogging
instance CR.Version(s):
RHOCP 4.16Issue:
https://issues.redhat.com/browse/OBSDOCS-1522
Link to docs preview:
https://86114--ocpdocs-pr.netlify.app/openshift-enterprise/latest/observability/logging/config/cluster-logging-memory.html
https://86114--ocpdocs-pr.netlify.app/openshift-enterprise/latest/observability/logging/log_visualization/logging-kibana.html
QE review:
Additional information: