Step 1: Login in to AWS, search IAM in left top search box, and then select Users.
Step 2: Select 'Roles' from the left sidebar and verify if the AmazonEKSFargatePodExecutionRole is present. Click on that role, then go to the 'Permissions' tab to ensure that the AmazonEKSFargatePodExecutionRolePolicy is present.
Step 3: If role is not present, click the Create role button and follow the steps below.
Step 4: Click on "Custom trust policy" and paste the below content in that and click Next.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "eks-fargate-pods.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
}
Step 5: Search and select the AmazonEKSFargatePodExecutionRolePolicy and click Next.
Step 6: Enter the AmazonEKSFargatePodExecutionRole in the Role name and description.
Step 7: Click on "Create role" to create the AmazonEKSFargatePodExecutionRole for that IAM user.
Comments
0 comments
Article is closed for comments.