AWS S3 Role Authentication #1728
-
Hello, I'm trying to setup Terrakube on AWS EKS cluster. I created the necessary service account and added When the api tries to access S3, I get this error
My pod desciption
I verified that the token is available at I tried to lookup the error <dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>sts</artifactId>
</dependency> It seems to work for other people without adding it. Is someone able to confirm that it should work for the helm version |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Check this |
Beta Was this translation helpful? Give feedback.
-
Hello, I look it up before. According to documentation:
The one that will be used for kubernetes service account is
I have the warning in the logs:
I have never done Java, so I'm not sure exactly sure, but the code suggest a missing dependency: <dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>sts</artifactId>
</dependency> My config (Terraform template)``` ## Global Name name: "terrakube"
|
Beta Was this translation helpful? Give feedback.
I made an image based on branch
release/2.24.X
modifyingapi/pom.xml
,executor/pom.xml
andregistry/pom.xml
by adding:It works now but I was not able to compile on the main branch.