Skip to content

Commit 268f9f1

Browse files
authored
Merge pull request #86970 from prithvipatil97/patch-24
One step needs to be added to the Quick Start point of About Logging 6.0 documentation
2 parents d16f1d7 + 6d9b36b commit 268f9f1

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

observability/logging/logging-6.0/log6x-about.adoc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,20 @@ Logging includes extensive validation rules and default values to ensure a smoot
4343

4444
. Install the `OpenShift Logging` and `Loki` Operators from OperatorHub.
4545

46+
. Create a secret to access an existing object storage bucket:
47+
+
48+
.Example command for AWS
49+
[source,terminal,subs="+quotes"]
50+
----
51+
$ oc create secret generic logging-loki-s3 \
52+
--from-literal=bucketnames="<bucket_name>" \
53+
--from-literal=endpoint="<aws_bucket_endpoint>" \
54+
--from-literal=access_key_id="<aws_access_key_id>" \
55+
--from-literal=access_key_secret="<aws_access_key_secret>" \
56+
--from-literal=region="<aws_region_of_your_bucket>" \
57+
-n openshift-logging
58+
----
59+
4660
. Create a `LokiStack` custom resource (CR) in the `openshift-logging` namespace:
4761
+
4862
[source,yaml]

0 commit comments

Comments
 (0)