将小型bash脚本添加到cloudbuild.yaml中



我有一个用于谷歌云(GCP(的cloudbuild.yaml文件。我想使用简单的bash脚本$(node -p -e "require('./package.json').version")(或任何其他方式(从package.json获取version。如何将其添加到我的cloudbuild.yaml文件中?

我试着把脚本放在substitution中,但没有成功。

# gcloud submit   --substitutions=_VERSION="1.1.0"
steps:
# build the container image
- name: "gcr.io/cloud-builders/docker"
args: ["build", "-t", "gcr.io/${_PROJECT_ID}/${_IMAGE}:${_VERSION}", "."]
# push the container image to Container Registry
- name: "gcr.io/cloud-builders/docker"
args: ["push", "gcr.io/${_PROJECT_ID}/${_IMAGE}:${_VERSION}"]
# build the container image
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
entrypoint: gcloud
args:
[
"run",
"deploy",
"${_SERVICE_NAME}",
"--project",
"${_PROJECT_ID}",
"--image",
"gcr.io/${_PROJECT_ID}/${_IMAGE}:${_VERSION}",
"--platform",
"managed",
"--allow-unauthenticated",
"--region",
"${_REGION}",
"--set-env-vars",
"${_ENV_VARS}",
"--ingress",
"internal-and-cloud-load-balancing",
"--quiet",
]
images:
- gcr.io/${_PROJECT_ID}/${_IMAGE}
substitutions:
_REGION: us-east1
_PROJECT_ID: my-dev
_SERVICE_NAME: my-client
_IMAGE: my-client
_VERSION: $(node -p -e "require('./package.json').version")
_ENV_VARS: "APP_ENV=dev"

这是云构建的糟糕之处之一。不能将变量从一个步骤传递到另一个步骤。在步骤之间仅保持/workspace。替换变量只是静态的(预定义的或在管道运行时设置的(。

这里的解决方案并不那么容易。

  • 您需要添加一个步骤来获取版本并将其写入文件
- name: 'node'
entrypoint: bash
args:
- -c
- node -p -e "require('./package.json').version" > /workspace/node_version
  • 然后在你的步骤中使用它,就像那样
- name: "gcr.io/cloud-builders/docker"
entrypoint: bash
args: 
- -c
- |
VERSION=$${cat /workspace/node_version}
docker build -t gcr.io/${_PROJECT_ID}/${_IMAGE}:$${VERSION} .

双美元$$表示这是一个linux命令,而不是云构建变量

根据Guillaume的回答,您可以使用带有两个$$而不是一个$的bash脚本,就像$$(node -p -e "require('./package.json').version")一样但是,如果您尝试使用的命令不可用(node将不可用(,最好从您可以在上面的步骤中创建的文件中提取它,如Guillaume的回答:

- name: "gcr.io/cloud-builders/docker"
entrypoint: bash
args: 
- -c
- docker build -t gcr.io/${_PROJECT_ID}/${_IMAGE}:$$(cat ./package_version) .

更新:这是我们的整个脚本

- name: 'node'
entrypoint: bash
args:
- -c
- |
echo "$(node -p -e "require('./package.json').version")-$BRANCH_NAME-$(git rev-parse --short HEAD)" | sed 's///-/g' > _VERSION
echo "Building version $(cat _VERSION)"

打印<package-name>-<version>-<git_hash>

相关内容

  • 没有找到相关文章

最新更新