Skip to content

Commit 553774d

Browse files
prithvipatil97openshift-cherrypick-robot
authored andcommitted
Modify access key secret and bucket name in docs
AWS secret code needs to be corrected Here is the documentation link: https://docs.redhat.com/en/documentation/red_hat_openshift_logging/6.3/html/installing_logging/installing-logging#install-loki-operator-cli_installing-logging:~:text=Create%20a%20secret%20with%20the%20credentials%20to%20access%20the%20object%20storage.%20For%20example%2C%20create%20a%20secret%20to%20access%20Amazon%20Web%20Services%20(AWS)%20s3. Here is the current look: 9. Create a secret with the credentials to access the object storage. For example, create a secret to access Amazon Web Services (AWS) s3. apiVersion: v1 kind: Secret metadata: name: logging-loki-s3 1 namespace: openshift-logging stringData: 2 access_key_id: <access_key_id> access_key_secret: <access_secret> bucketnames: s3-bucket-name endpoint: https://s3.eu-central-1.amazonaws.com region: eu-central-1 `access_key_secret` value is wrongly mentioned. It needs to be corrected. The correct value is `access_key_secret` Here is the updated look: 9. Create a secret with the credentials to access the object storage. For example, create a secret to access Amazon Web Services (AWS) s3. apiVersion: v1 kind: Secret metadata: name: logging-loki-s3 1 namespace: openshift-logging stringData: 2 access_key_id: <access_key_id> access_key_secret: <secret_access_key> bucketnames: <s3_bucket_name> endpoint: https://s3.eu-central-1.amazonaws.com region: eu-central-1
1 parent 715948c commit 553774d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/installing-loki-operator-cli.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ metadata:
119119
namespace: openshift-logging
120120
stringData: # <2>
121121
access_key_id: <access_key_id>
122-
access_key_secret: <access_secret>
123-
bucketnames: s3-bucket-name
122+
access_key_secret: <secret_access_key>
123+
bucketnames: <s3_bucket_name>
124124
endpoint: https://s3.eu-central-1.amazonaws.com
125125
region: eu-central-1
126126
----

0 commit comments

Comments
 (0)