File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
observability/logging/logging-6.0 Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff 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]
You can’t perform that action at this time.
0 commit comments