Hi flyte team. I am trying to configure s3 storage...
# flyte-deployment
m
Hi flyte team. I am trying to configure s3 storage with iam authentication and I can’t figure out how to pass the role itself. It is assuming service account is setup with the right iam roles similar to eks irsa?
d
Hi @Mike Morgan and welcome to the Flyte community Yes, the default assumption is you're using IRSA
so in the
values
file you would pass the role as:
Copy code
serviceAccount:
  create: enable
  annotations:
    <http://eks.amazonaws.com/role-arn|eks.amazonaws.com/role-arn>: "arn:aws:iam::<aws-account-id>:role/<IAM_ROLE_NAME>"
m
Nice! Thank you
d
152 Views