-
Notifications
You must be signed in to change notification settings - Fork 1.8k
[OBSDOCS-2681] Update documentation for logging-loki-minio secret #101355
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
[OBSDOCS-2681] Update documentation for logging-loki-minio secret #101355
Conversation
Line continuation character () is missing from the Minio Storage Secret command Here is the documentation link: https://docs.redhat.com/en/documentation/red_hat_openshift_logging/6.3/html/configuring_logging/configuring-lokistack-storage#logging-loki-storage-minio_configuring-the-log-store The backslash () must be set at the end of a line, as it is a line continuation character. Here is the current look: Create an object storage secret with the name logging-loki-minio by running the following command: $ oc create secret generic logging-loki-minio \ 1 --from-literal=bucketnames="<bucket_name>" \ --from-literal=endpoint="<minio_bucket_endpoint>" \ --from-literal=access_key_id="<minio_access_key_id>" \ --from-literal=access_key_secret="<minio_access_key_secret>" --from-literal=forcepathstyle="true" The backslash () is missing from line no. 5 As backslash is a line continuation character, so we need to add it to the command. So it will complete the command. Here is the updated look: Create an object storage secret with the name logging-loki-minio by running the following command: $ oc create secret generic logging-loki-minio \ 1 --from-literal=bucketnames="<bucket_name>" \ --from-literal=endpoint="<minio_bucket_endpoint>" \ --from-literal=access_key_id="<minio_access_key_id>" \ --from-literal=access_key_secret="<minio_access_key_secret>" \ --from-literal=forcepathstyle="true"
|
🤖 Wed Oct 29 19:15:13 - Prow CI generated the docs preview: https://101355--ocpdocs-pr.netlify.app/ |
|
@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 Team, All checks have passed, and I have reviewed the PR with the peer review checklist. @anpingli , @QiaolingTang , it would be really helpful if someone could please take a look and provide QE approval for this change. Thanks in advance. Regards, |
|
/lgtm |
|
Hello QiaolingTang, Regards, |
|
/label merge-review-needed |
511bf46
into
openshift:standalone-logging-docs-main
|
/cherrypick standalone-logging-docs-6.0 |
|
/cherrypick standalone-logging-docs-6.1 |
|
/cherrypick standalone-logging-docs-6.2 |
|
/cherrypick standalone-logging-docs-6.3 |
|
/cherrypick standalone-logging-docs-6.4 |
|
@briandooley: #101355 failed to apply on top of branch "standalone-logging-docs-6.0": In response to this:
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. |
|
@briandooley: #101355 failed to apply on top of branch "standalone-logging-docs-6.1": In response to this:
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. |
|
@briandooley: #101355 failed to apply on top of branch "standalone-logging-docs-6.2": In response to this:
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. |
|
@briandooley: new pull request created: #102114 In response to this:
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. |
|
@briandooley: new pull request created: #102115 In response to this:
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. |
Line continuation character () is missing from the Minio Storage Secret command
Here is the documentation link:
https://docs.redhat.com/en/documentation/red_hat_openshift_logging/6.3/html/configuring_logging/configuring-lokistack-storage#logging-loki-storage-minio_configuring-the-log-store
The backslash () must be set at the end of a line, as it is a line continuation character.
Here is the current look:
Here is the updated look:
Version(s):
Logging 6.4, Logging 6.3, Logging 6.2, Logging 6.1, Logging 6.0
Issue:
https://issues.redhat.com/browse/OBSDOCS-2681
Link to docs preview:
https://101355--ocpdocs-pr.netlify.app/
https://101355--ocpdocs-pr.netlify.app/openshift-logging/latest/configuring/configuring-the-log-store.html
QE review:
Additional information: