0

我一直在努力解决这个问题已经有一段时间了,但我无法弄清楚(我知道这一定是一件简单的事情)。

目前,我正在尝试从两个存储库中提取(这自然会创建两个单独的目录),然后我试图将文件从一个目录移动到另一个目录以成功执行 Dockerfile。

这是我的 pipeline.yml 文件的样子:

---
jobs:
- name: build-nexus-docker-image
  public: false
  plan:
  - get: git-nexus-docker-images
    trigger: true
  - get: git-nexus-license
    trigger: true
  - task: mv-nexus-license
    config:
      platform: linux
      image_resource:
        type: docker-image
        source: {repository: ubuntu, tag: "trusty"}
      inputs:
        - name: git-nexus-license
        - name: git-nexus-docker-images
      run:
        path: /bin/sh
        args:
          - -c
          - mv -v git-nexus-license/nexus.lic git-nexus-docker-images/nexus.lic; ls -la git-nexus-docker-images
  - put: nexus-docker-image
    params:
      build: git-nexus-docker-images/

resources:
- name: git-nexus-docker-images
  type: git
  source:
    uri: git@git.company.com:dev/nexus-pro-dockerfile.git
    branch: test
    paths: [Dockerfile]
    private_key: {{git_ci_key}}

- name: git-nexus-license
  type: git
  source:
    uri: git@git.company.com:secrets/nexus-information.git
    branch: master
    paths: [nexus.lic]
    private_key: {{git_ci_key}}

- name: nexus-docker-image
  type: docker-image
  source:
    username: {{aws-token-username}}
    password: {{aws-token-password}}
    repository: {{ecr-nexus-repo}}

我已经发布了实际上可以部署到 Concourse 的管道;但是我尝试了很多东西,但我无法弄清楚如何做到这一点。我坚持将许可证文件从git-nexus-license一个目录移动到另一个git-nexus-docker-images目录。我所做的似乎并没有 mvnexus.lic文件,因为在构建 docker 映像时它失败了,因为它在目录中找不到该文件。

编辑:我已经成功地能够nexus.lic使用上面的代码“mv”,但是由于找不到文件,构建仍然失败!我不确定我做错了什么,如果我手动构建,构建工作正常,但使用 Concourse 它失败了。

4

1 回答 1

4

好的,所以我弄清楚了我做错了什么,而且像往常一样,这是一件小事。我忘记将 yml 添加outputs到告诉大厅这是新的工作目录的 yml 文件中。这是它现在的样子(对我有用):

---
jobs:
- name: build-nexus-docker-image
  public: false
  plan:
  - get: git-nexus-docker-images
    trigger: true
  - get: git-nexus-license
    trigger: true
  - task: mv-nexus-license
    config:
      platform: linux
      image_resource:
        type: docker-image
        source: {repository: ubuntu, tag: "trusty"}
      inputs:
        - name: git-nexus-license
        - name: git-nexus-docker-images
      outputs:
        - name: build-nexus-dir
      run:
        path: /bin/sh
        args:
          - -c
          - mv -v git-nexus-license/nexus.lic build-nexus-dir/nexus.lic; mv -v git-nexus-docker-images/* build-nexus-dir; ls -la build-nexus-dir;
  - put: nexus-docker-image
    params:
      build: build-nexus-dir/

resources:
- name: git-nexus-docker-images
  type: git
  source:
    uri: git@git.company.com:dev/nexus-pro-dockerfile.git
    branch: test
    paths: [Dockerfile]
    private_key: {{git_ci_key}}

- name: git-nexus-license
  type: git
  source:
    uri: git@git.company.com:secrets/nexus-information.git
    branch: master
    paths: [nexus.lic]
    private_key: {{git_ci_key}}

- name: nexus-docker-image
  type: docker-image
  source:
    username: {{aws-token-username}}
    password: {{aws-token-password}}
    repository: {{ecr-nexus-repo}}

我希望这有助于任何陷入困境的人。:)

于 2016-06-22T13:39:25.347 回答