Commit 5b7cf28
Fix formatting in AWS logging configuration documentation
backslash () is missing from AWS object storage secret creation 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-aws_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-aws by running the following command:
$ oc create secret generic logging-loki-aws \ 1
--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>"
--from-literal=forcepathstyle="true"
The backslash () is missing from line no. 6
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-aws by running the following command:
~~~
$ oc create secret generic logging-loki-aws \ 1
--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>" \
--from-literal=forcepathstyle="true"
~~~1 parent 2515097 commit 5b7cf28
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
0 commit comments