-
Notifications
You must be signed in to change notification settings - Fork 1.8k
(enterprise-4.13) Indentation fault in Configuring CPU and memory limits for logging components #86306
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
…its for logging components - 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.13/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 the 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!
Hello @snarayan-redhat , |
Hello Team, @anpingli , @kabirbhartiRH , @QiaolingTang , It would be really helpful if someone could please take a look and provide QE approval for this change. Thanks in advance. |
LGTM. |
Hello @QiaolingTang , Regards, |
/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.13/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 the ClusterLogging instance CR.Version(s):
RHOCP 4.13Issue:
https://issues.redhat.com/browse/OBSDOCS-1522Link to docs preview:
https://86306--ocpdocs-pr.netlify.app/openshift-enterprise/latest/observability/logging/config/cluster-logging-memory.html
https://86306--ocpdocs-pr.netlify.app/openshift-enterprise/latest/observability/logging/log_visualization/logging-kibana.html
QE review:
Additional information: