有没有办法从 python 代码中获取值到 YAML 文件中

Is there a way to get the value from python code into YAML file

我正在创建 buildspec.yml 文件以在 ECR 上构建 docker 映像。 docker 图像必须命名为例如:“image-1.0.1”。值 1.0.1 将从 python 脚本接收。如何在 buildspec.yml 中的变量中获得相同的值?

您可以在 buildspec.yml 文件的不同位置使用 shell 命令语言,例如

name: myname-$(date +%Y-%m-%d)

所以,尝试以下方法:

name: image-$(cat version.txt)

其中 version.txt 是包含您的版本号的文本文件,例如:1.0.1.