Skip to content

Commit

Permalink
docs: update recommend values, favor S3 auth with SA (#133)
Browse files Browse the repository at this point in the history
Signed-off-by: arkbriar <[email protected]>
  • Loading branch information
arkbriar authored Nov 14, 2024
1 parent d7c5375 commit bdcaf70
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions examples/recommend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ service:

serviceAccount:
create: true
# annotations:
# eks.amazonaws.com/role-arn: arn:aws:iam::111122223333:role/my-role
annotations:
# Please provide the ARN of the IAM role that the service account will assume, e.g.,
# arn:aws:iam::111122223333:role/my-role
#
eks.amazonaws.com/role-arn: arn:aws:iam::111122223333:role/my-role

stateStore:
minio:
Expand All @@ -15,9 +18,12 @@ stateStore:
region: us-east-1
bucket: s3bucket
authentication:
useServiceAccount: false
accessKey: ak
secretAccessKey: sk
useServiceAccount: true
# Use ServiceAccount to authenticate with S3 by default. If you want to use AccessKey and SecretAccessKey,
# set useServiceAccount to false and provide the accessKey and secretAccessKey.
#
# accessKey: ak
# secretAccessKey: sk

metaComponent:
resources:
Expand Down

0 comments on commit bdcaf70

Please sign in to comment.