-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Need to add one step in quick start procedure of About Logging 6.0 documentation #86648
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
…cumentation - Need to add one step in the Quick Start point of About Logging 6.0 documentation. - Here is the documentation link: https://docs.openshift.com/container-platform/4.17/observability/logging/logging-6.0/log6x-about.html#quick-start - Before creating `LokiStack` custom resource (CR) in the openshift-logging namespace, it is necessary to create an object storage secret. - Without creating a secret we can not create `Lokistack` customer resource. - So it is required to add this step in our documentation. - Hence adding Step 2 in the documentation: ----------------- 2. Create a secret with the details to access to an existing object storage bucket. AWS is used in the following example: ~~~ $ oc create secret generic logging-loki-s3 \ --from-literal=bucketnames="<bucket_name>" \ --from-literal=endpoint="<aws_bucket_endpoint>" \ --from-literal=access_key_id="<aws_access_key_id>" \ --from-literal=access_key_secret="<aws_access_key_secret>" \ --from-literal=region="<aws_region_of_your_bucket>" \ -n openshift-logging ~~~ ------------------
🤖 Mon Jan 06 19:58:21 - Prow CI generated the docs preview: |
/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.
A tiny nit; otherwise LGTM
Gentle reminder for QE review.
- Need to add one step in the Quick Start point of About Logging 6.0 documentation. - Here is the documentation link: https://docs.openshift.com/container-platform/4.17/observability/logging/logging-6.0/log6x-about.html#quick-start - Here Step 2 is mentioned as "Create a LokiStack custom resource (CR) in the openshift-logging namespace:" - But before creating `LokiStack` custom resource (CR), it is necessary to create an `object storage secret`. - Without creating a secret we can not create `Lokistack` customer resource. - We need to mention that `object storage secret` name in the `LokiStack custom resource (CR)` under `spec.storage.secret.name` section. - So it is required to add this step in our documentation. - Hence adding Step 2 in the documentation: ----------------- 2. Create a secret to access an existing object storage bucket: Example command for AWS ~~~ $ oc create secret generic logging-loki-s3 \ --from-literal=bucketnames="<bucket_name>" \ --from-literal=endpoint="<aws_bucket_endpoint>" \ --from-literal=access_key_id="<aws_access_key_id>" \ --from-literal=access_key_secret="<aws_access_key_secret>" \ --from-literal=region="<aws_region_of_your_bucket>" \ -n openshift-logging ~~~ ------------------ Co-authored-by: Servesha Dudhgaonkar <49194531+xenolinux@users.noreply.github.com>
@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. |
Hello @xenolinux , As suggested by you I performed commit changes.
I tried some actions to resolve this issue, but it is not working. Let me create a New PR with suggested new changes, and will link that new PR with this PR. Kindly confirm. Regards, |
Hello @xenolinux , I followed all the steps.
Here are steps followed:
I am using the correct username and password. Here is the repository URL:
Could you please help me here. Regards, |
Hey @prithvipatil97 To resolve these errors, we need to jump in the meeting and it could take time. I am also on PTO and will be back Wed. I think you can consider creating another PR by closing this PR. Add the merge review label again since the peer review is done. You can mention this PR link in the PR description. Thanks! |
Hello @xenolinux , Sure. And we will close this PR. Regards, |
Created a new PR: |
New PR has been linked to this PR. |
LokiStack
custom resource (CR), it is necessary to create anobject storage secret
.Lokistack
customer resource.object storage secret
name in theLokiStack custom resource (CR)
underspec.storage.secret.name
section.Version(s):
RHOCP-4.18, RHOCP-4.17, RHOCP-4.16, RHOCP-4.15, RHOCP-4.14
Issue:
https://issues.redhat.com/browse/OBSDOCS-1346
Link to docs preview:
https://86648--ocpdocs-pr.netlify.app/openshift-enterprise/latest/observability/logging/logging-6.0/log6x-about.html
QE review:
Additional information: