mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* Update k8s dependencies to v0.26.2 * Update controller-runtime to v0.14.6 * Update cloud storage https://github.com/googleapis/google-cloud-go/issues/6857 * Update copy options * Update wolfi image * Remove controller-runtime replace directives * Fix integration tests
Required Permssion
If you want it to work in a particular public cloud, you may need to grant some permissions. Below is a reference for this.
AWS IAM Policy
If you would like to use ECR as a container registry, please add the following IAM policy below.
Also, if you want to use ECR as public, you should add ecr-public too.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "VisualEditor0",
"Effect": "Allow",
"Action": [
"ecr:GetDownloadUrlForLayer",
"ecr:BatchGetImage",
"ecr:GetAuthorizationToken"
],
"Resource": "*"
}
]
}