0

尝试谷歌搜索并阅读他们的文档,但我找不到他们支持的最大图像尺寸是多少?我有一个 15.7GB 的图像,我无法将它上传到容器注册表:

gcloud docker -- push eu.gcr.io/XXXXXX/YYYYYY:ZZZZZZ
The push refers to a repository [eu.gcr.io/XXXXXX/YYYYYY]
5efa92011d99: Retrying in 1 second
8bac40556b9d: Retrying in 8 seconds
e4990dfff478: Retrying in 14 seconds
9f8566ee5135: Retrying in 10 seconds
unknown: Bad Request.
4

1 回答 1

1

请通过 gcr-contact@google.com 与我们联系并提供未编辑的图片

一般来说(这对您来说可能不是问题),大图像的问题是您通过我们的正常令牌交换收到的短期访问令牌将导致上传失败。您将不得不探索 JSON 密钥身份验证,以便在将图像上传到 GCS 时启用那些非常长的会话:https ://cloud.google.com/container-registry/docs/advanced-authentication

于 2017-04-10T16:10:52.730 回答