Cloud Container Builder,ZIP在1980年之前不支持时间戳

时间:2018-03-15 10:38:06

标签: google-app-engine google-cloud-platform google-cloud-functions google-container-registry google-container-builder

我正在尝试以下教程。

Automatic serverless deployments with Cloud Source Repositories and Container Builder

但我收到了以下错误。

$ gcloud container builds submit --config deploy.yaml .

BUILD
Already have image (with digest): gcr.io/cloud-builders/gcloud
ERROR: (gcloud.beta.functions.deploy) Error creating a ZIP archive with the source code for directory .: ZIP does not support timestamps before 1980
ERROR
ERROR: build step 0 "gcr.io/cloud-builders/gcloud" failed: exit status 1

我现在正试图解决它。你有什么主意吗?我的gcloud是最新版本。

$ gcloud -v
Google Cloud SDK 193.0.0
app-engine-go 
app-engine-python 1.9.67
beta 2017.09.15
bq 2.0.30
core 2018.03.09
gsutil 4.28

教程中的示例google云功能代码。

#index.js
exports.f = function(req, res) {
  res.send("hello, gcf!");
};

#deploy.yaml
steps:
- name: gcr.io/cloud-builders/gcloud
  args:
  - beta
  - functions
  - deploy
  - --trigger-http
  - --source=.
  - --entry-point=f
  - hello-gcf # Function name

#deploying without Cloud Container Builder is fine.
gcloud beta functions deploy --trigger-http --source=. --entry-point=f hello-gcf

4 个答案:

答案 0 :(得分:1)

Container Builder会分析您的源文件夹。也许你的东西。目录已损坏日期?这就是为什么将它移动到源文件夹会修复它。

答案 1 :(得分:0)

虽然我不知道原因,但我找到了解决方法。

(1) make src directory and move index.js into it.

├── deploy.yaml
└── src
    └── index.js

(2) deploy via Cloud Container Builder.

$ gcloud container builds submit --config deploy.yaml ./src

答案 2 :(得分:0)

我现在遇到了同样的问题。我无法解决它,但至少我发现了它的来源。 在本地提交构建文件时,会创建一个tar,并将其上传到存储桶中。在此tar中,文件夹位于1970年1月1日:

16777221 8683238 drwxr-xr-x 8 user staff 0 256 "Jan  1 01:00:00 1970" "Jan  1 01:00:00 1970" "May 15 12:42:04 2019" "Jan  1 01:00:00 1970" 4096 0 0 test

此问题仅在本地发生。如果您有github构建触发器,那么它将起作用

答案 3 :(得分:0)

我最近使用Cloud Build(Container Builder的后继产品)遇到了同一问题。

有用的是,添加了一个步骤以列出Cloud Build环境中的所有文件/文件夹(默认目录为/workspace),以识别有问题的文件/文件夹。您可以通过覆盖gcloud容器的入口点来执行ls命令来实现此目的。

steps
  - name: gcr.io/cloud-builders/gcloud
    entrypoint: "ls"
    args: ["-la", "/workspace"]