GC Cloud Build:Remote-Builder hello world 中的异常
GC Cloud Build: Exception in Remote-Builder hello world
我尝试使用 Remote Builder 图像设置我的 AppEngine 应用程序的远程构建。
这是我的 cloudbuild.yaml:
steps:
- name: gcr.io/{PROJECT_NAME}/remote-builder
env:
- ZONE=us-east1-b
- INSTANCE_NAME=Remote_Cloud_Build
- INSTANCE_ARGS=--image-project cos-cloud --image-family cos-stable
我从远程构建器中获取了这些值 example
但是当我尝试使用 gcloud builds submit --config cloudbuild.yaml
部署它时,出现错误:
/bin/run-builder.sh: line 2: $'\r': command not found
你能帮我吗?
提前致谢!
此问题与 windows 样式 run-builder.sh
文件结尾有关。我已将其从 CRLF 更改为 LF,并且有效
我尝试使用 Remote Builder 图像设置我的 AppEngine 应用程序的远程构建。
这是我的 cloudbuild.yaml:
steps:
- name: gcr.io/{PROJECT_NAME}/remote-builder
env:
- ZONE=us-east1-b
- INSTANCE_NAME=Remote_Cloud_Build
- INSTANCE_ARGS=--image-project cos-cloud --image-family cos-stable
我从远程构建器中获取了这些值 example
但是当我尝试使用 gcloud builds submit --config cloudbuild.yaml
部署它时,出现错误:
/bin/run-builder.sh: line 2: $'\r': command not found
你能帮我吗?
提前致谢!
此问题与 windows 样式 run-builder.sh
文件结尾有关。我已将其从 CRLF 更改为 LF,并且有效