79726504

Date: 2025-08-05 18:24:28
Score: 0.5
Natty:
Report link

For anyone landing here in 2025, where Keda is currently sitting at v2.17.0, I needed to add this to my serviceAccount.yaml after encountering similar problems:

eks.amazonaws.com/sts-regional-endpoints: "true"

So entire serviceAccount looks something like this:

apiVersion: v1
kind: ServiceAccount
metadata:
  name: <SA>
  namespace: my-namespace
  annotations:
    eks.amazonaws.com/role-arn: arn:aws:iam::<ACCOUNT_#>:role/<SA>
    eks.amazonaws.com/sts-regional-endpoints: "true"
Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Harry Lincoln