Skip to content

Conversation

@openshift-cherrypick-robot

This is an automated cherry-pick of #101355

/assign briandooley

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"
@openshift-ci openshift-ci bot added the size/XS Denotes a PR that changes 0-9 lines, ignoring generated files. label Nov 10, 2025
@openshift-ci
Copy link

openshift-ci bot commented Nov 10, 2025

@openshift-cherrypick-robot: 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size/XS Denotes a PR that changes 0-9 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants