Open bzlom opened 2 years ago
It seems like you are about at the same place I was. See the closed issue: https://github.com/grafana/helm-charts/issues/1222 for details. My example is not for AWS but it should give you some pointers.
I did precreate the S3 bucket beforehand. Doesn't really solve my issue unfortunatelly.
If you are using EKS, then in your podAnnotations use this: eks.amazonaws.com/role-arn Make sure you have IRSA role configured in IAM/EKS
You only need the annotation on the SA when using EKS.
serviceAccount:
create: true
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::xyz:role/mimir
This with a typical TF IRSA module works just fine.
Currently having this issue attempting to deploy on prem via argo. Was there anything obvious that was missed?
When trying to setup Mimir 2.0.7 chart with S3 backend I'm getting the following errors when spinning up
mimir-ingester-*
,mimir-compactor-*
,mimir-ruler-*
,mimir-querier-*
pods in k8s:These are the values I'm passing, I'm also relying on AWS RBAC access which is why the
podAnnotations:
field below:Can you advise on what am I missing in this configuration.