5

Docker イメージをビルドしてデプロイする前に、GPM から app/dist/asset/images フォルダーにビデオ ファイルをコピーしようとしています。27 行目で予期しない値「Steps」を取得しています。

ビデオファイルをコピーする手順を削除すると、YML ファイルは正常に機能します。

azure-pipelines.yml

    trigger:
  branches:
    include: ['*']

pool:
  name: Default

# templates repo
resources:
  repositories:
    - repository: templates
      type: git
      name: comp.app.common.devops-templates
      ref: master

# Global Variables
variables:
  # necessary variables defined in this template
  - template: azure-templates/vars/abc-vars.yml@templates
  - name: dockerRepoName
    value: 'docker-it/library/xyz'
  # needed for k8 deployment
  - name: helmReleaseName
    value: xyz

stages:
  - steps:
    - bash: 'curl -o aa.mp4 https://gpm.mmm.com/endpoints/Application/content/xyz/bb.mp4'
      workingDirectory: '$(System.DefaultWorkingDirectory)/_hh_app/drop/app/dist/assets/images'
      displayName: 'Download Assets'

  # template to build and deploy
  - template: azure-templates/stages/angular-express-docker.yml@templates
    parameters:
      dockerRepoName: $(dockerRepoName)

    # deploy to rancher
  - template: azure-templates/stages/deploy-k8-npm.yml@templates
    parameters:
      helmReleaseName: $(helmReleaseName)
4

1 に答える 1

9

stepsstageプロパティをレベルの下に置くべきではありません。これは:stage=>job=>steps

stepsそのため、マルチステージ yaml パイプラインを定義している場合、そこに配置することはできません。

1.steps単純な yaml パイプライン (ステージなし) の最初のレベルに直接配置できます。

trigger:
- master

pool:
  vmImage: 'windows-latest'

steps:
- script: echo Hello, world!
  displayName: 'Run a one-line script'

- script: |
    echo Add other tasks to build, test, and deploy your project.
  displayName: 'Run a multi-line script'

2.マルチステージ yaml パイプライン内のジョブ レベルの下に配置する必要があります。

stages:
- stage: build
  displayName: Build
  jobs:
  - job: Build
    pool:
      name: xxx
    steps:
      - task: CmdLine@2
        inputs:
          script: |
            echo Hello world

- stage: deploy
  displayName: Release
  jobs:
  - job: Release
    pool:
      name: xxx
    steps:
      - task: CmdLine@2
        inputs:
          script: |
            echo Hello world

要素に応じてstages:、パイプラインはビルドとデプロイに使用できるマルチステージ パイプラインとして認識されます。stepsしたがって、の直下に置くことはできませんし、すべきではありませんstages:

解決:

を解決するUnexpected value 'Steps'には、 を削除するstepsか、1 つのステージ レベルに追加する必要があります。

stages:
  - stage: First
    displayName: FirstStage
    jobs:
    - job: FirstJob
      pool:
        name: xxx
      steps:
      - bash: 'curl -o aa.mp4 https://gpm.mmm.com/endpoints/Application/content/xyz/bb.mp4'
        workingDirectory: '$(System.DefaultWorkingDirectory)/_hh_app/drop/app/dist/assets/images'
        displayName: 'Download Assets'

  # template to build and deploy
  - template: azure-templates/stages/angular-express-docker.yml@templates
    parameters:
      dockerRepoName: $(dockerRepoName)

    # deploy to rancher
  - template: azure-templates/stages/deploy-k8-npm.yml@templates
    parameters:
      helmReleaseName: $(helmReleaseName)
于 2020-08-06T01:35:37.273 に答える