This message was deleted.
# troubleshooting
s
This message was deleted.
j
Everything I search for tells me that in this version of druid everything should be working without issue.
And it does work in overlord...
the service account is annotated:
Copy code
apiVersion: v1
automountServiceAccountToken: true
kind: ServiceAccount
metadata:
  annotations:
    <http://eks.amazonaws.com/role-arn|eks.amazonaws.com/role-arn>: 'arn:aws:iam::11111:role/druid-s3'
and the pod gets the appropriate env vars:
Copy code
- name: AWS_STS_REGIONAL_ENDPOINTS
          value: regional
        - name: AWS_DEFAULT_REGION
          value: us-west-2
        - name: AWS_REGION
          value: us-west-2
        - name: AWS_ROLE_ARN
          value: 'arn:aws:iam::11111:role/druid-s3'
        - name: AWS_WEB_IDENTITY_TOKEN_FILE
          value: /var/run/secrets/eks.amazonaws.com/serviceaccount/token
this was on me. I didn't set the service account name for the historical service in the OIDC setup on AWS
👍 2
g
ok, good to know!