Skip to content

Commit

Permalink
Allow ECR pull from controller IAM role
Browse files Browse the repository at this point in the history
Goes some way to resolve
coreos/coreos-kubernetes#620
  • Loading branch information
Chris Knowles committed Nov 5, 2016
1 parent 45452ba commit 145aebb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions config/templates/stack-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,19 @@
"Action" : "kms:Decrypt",
"Effect" : "Allow",
"Resource" : "{{.KMSKeyARN}}"
},
{
"Action": [
"ecr:GetAuthorizationToken",
"ecr:BatchCheckLayerAvailability",
"ecr:GetDownloadUrlForLayer",
"ecr:GetRepositoryPolicy",
"ecr:DescribeRepositories",
"ecr:ListImages",
"ecr:BatchGetImage"
],
"Resource": "*",
"Effect": "Allow"
}
],
"Version": "2012-10-17"
Expand Down

0 comments on commit 145aebb

Please sign in to comment.