来自变量的位桶管道图像
bitbucket pipeline image from variable
我的 bitbucket 中有这个部分-pipelines.yml
image:
name: eu.gcr.io/$GCLOUD_PROJECT/some-name-here
username: _json_key
password: '$GCLOUD_API_KEYFILE'
它失败了,因为图像名称包含一个变量,是否有解决方法或者图像名称必须在 bitbucket 中硬编码-pipelines.yml?
您不能在 Docker 图像名称中使用变量。
早在 2016 年就有一个 open Jira issue 创建了此功能请求,在撰写本文时它仍然是 'gathering interest'。
我的 bitbucket 中有这个部分-pipelines.yml
image:
name: eu.gcr.io/$GCLOUD_PROJECT/some-name-here
username: _json_key
password: '$GCLOUD_API_KEYFILE'
它失败了,因为图像名称包含一个变量,是否有解决方法或者图像名称必须在 bitbucket 中硬编码-pipelines.yml?
您不能在 Docker 图像名称中使用变量。
早在 2016 年就有一个 open Jira issue 创建了此功能请求,在撰写本文时它仍然是 'gathering interest'。