自從昨天起,我一直試圖在Google Cloud SDK上部署我的項目,並且一直得到相同的錯誤。錯誤響應:[13]在Google Cloud SDK上部署項目時發生內部錯誤
我的app.yaml文件看起來像:
runtime: python27
api_version: 1
threadsafe: yes
- url:/
static_files: bin/index.html
upload: bin/index.html
- url: /assets
static_dir: bin/assets
- url: /src
static_dir: bin/src
- url: /vendor
static_dir: bin/vendor
- url: /templates-app.js
static_files: static/templates-app.js
upload: static/templates-app.js
- url: /templates-common.js
static_files: static/templates-common.js
upload: static/templates-common.js
- url: .*
script: main.app
我使用這個命令部署:
gcloud preview app deploy app.yaml --version 1 --promote --force
而且我得到這個錯誤:
Beginning deployment...
Copying files to Google Cloud Storage...
Synchronizing files to [gs://staging.myapp.appspot.com/].
Updating module [default]...failed.
ERROR: (gcloud.preview.app.deploy) Error Response: [13] An internal error occurred.
立即獲取相同的錯誤。除了錯誤13之外,沒有任何細節看起來像是別的東西壞了。我有很多文件,但是沒有超出任何限制,除非最近更改了限制。 – Jonny
我得到了幾次錯誤。每次爲我減少文件計數。 –