如何将 YAML 作为 bash 脚本中的文本嵌入到 YAML 中?

发布于 2025-01-11 15:13:10 字数 750 浏览 0 评论 0原文

我正在使用 bash 组装 YAML 构建管道,如下所示。

      cat <<EOT >> ${BUILD_SOURCESDIRECTORY}/azure-pipelines.yml
  - template: templates/deploy-to-env-ssh.yml@infrastructure
    parameters:
      dockerHostEndpoint: ${DOCKER_HOST}
      jobName: ${BASENAME}
      stackName: ${STACK_NAME}
      composeFile: ${STACK_NAME}.yml
      schedule: ???
        $(cat schedule.yml)
      tz: ${TZ}
EOT

我想要的是将以下 YAML 作为字符串存储到 schedule 中,我可以在管道的另一部分中重用该字符串。

version: 1.4
jobs:
  DockerJob:
    cmd: docker ps
    time: "*"
    notifyOnSuccess:
      - type: stdout
        data:
          - stdout

但似乎需要缩进。

I am assembling a YAML build pipeline using bash as follows.

      cat <<EOT >> ${BUILD_SOURCESDIRECTORY}/azure-pipelines.yml
  - template: templates/deploy-to-env-ssh.yml@infrastructure
    parameters:
      dockerHostEndpoint: ${DOCKER_HOST}
      jobName: ${BASENAME}
      stackName: ${STACK_NAME}
      composeFile: ${STACK_NAME}.yml
      schedule: ???
        $(cat schedule.yml)
      tz: ${TZ}
EOT

What I want is to store the following YAML into schedule as a string which I can reuse in a another part of the pipeline.

version: 1.4
jobs:
  DockerJob:
    cmd: docker ps
    time: "*"
    notifyOnSuccess:
      - type: stdout
        data:
          - stdout

But it seems it needs to be indented.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木有鱼丸 2025-01-18 15:13:10

您可以使用 pr 实用程序:

cat <<EOF >> ${BUILD_SOURCESDIRECTORY}/azure-pipelines.yml
  - template: templates/deploy-to-env-ssh.yml@infrastructure
    parameters:
      dockerHostEndpoint: ${DOCKER_HOST}
      jobName: ${BASENAME}
      stackName: ${STACK_NAME}
      composeFile: ${STACK_NAME}.yml
      schedule: $(printf "\n" && pr -to 8 schedule.yml)
      tz: ${TZ}
EOT

我使用 printf "\n" 因为您需要将 $(…) 放在第一个如果您想在新行上写入 $(...) ,因为包括第一行在内的每一行都会偏移给定的空格数。

You can use the pr utility:

cat <<EOF >> ${BUILD_SOURCESDIRECTORY}/azure-pipelines.yml
  - template: templates/deploy-to-env-ssh.yml@infrastructure
    parameters:
      dockerHostEndpoint: ${DOCKER_HOST}
      jobName: ${BASENAME}
      stackName: ${STACK_NAME}
      composeFile: ${STACK_NAME}.yml
      schedule: $(printf "\n" && pr -to 8 schedule.yml)
      tz: ${TZ}
EOT

I use printf "\n" because you'd need to place the $(…) at the first column if you want to write $(…) on a new line, since every line including the first one will be offset by the given number of spaces.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文