在 jenkins 文件管道中,我有:
def task = readJSON(file: 'ecs/task-definition.json')
echo "Read Task Definition: $task"
task.containerDefinitions[0].image="${AWS_VERSION_IMAGE}"
echo "New Task Definition With Image Is: $task"
在第二个 echo 语句的输出值中,我得到:
New Task Definition With Image Is: [name:proxy, image:[bytes:[48, 48, 55, 49, 50, 54, 53, 56, 51, 55, 53, 55, 46, 100, 107, 114, 46]]
其中AWS_VERSION_IMAGE
是定义为environment
块中AWS_VERSION_IMAGE = "${AWS_DOCKER_REGISTRY}:${VERSION_TAG}"
的环境变量。
感谢您的回复,我最终通过使用String
而不是像这样的def
来解决问题:
String image = "${AWS_VERSION_IMAGE}"
task.containerDefinitions[0].image=image
现在它起作用了。