Google Cloud Run Deploy error: Missing necessary permission error

前端 未结 2 840
一个人的身影
一个人的身影 2021-01-28 06:05

When trying to deploy my container (or the hello world container) to google cloud run I receive this error:

ERROR: (gcloud.run.deploy) Cloud Run error: Internal          


        
相关标签:
2条回答
  • 2021-01-28 06:15

    I order to assign the iam.serviceAccounts.actAs permission you have to set the roles/iam.serviceAccountUser role.

    You can do this by going to the Console > IAM & Admin and setting the Service Account User role to your service account.

    Also, confirm that the Cloud Run runtime service account also has the iam.serviceAccounts.actAs permission. This is a requirement specified in the Cloud Run deployment permissions docs

    0 讨论(0)
  • 2021-01-28 06:35

    As Dustin mentioned, there was an outage affecting IAM permissions. Now that the outage has been resolved, my deployment is working!

    0 讨论(0)
提交回复
热议问题