"gcloud builds submit"不会因缺少所需的替换而触发错误



我需要一些云构建--substitutions的帮助。

这是文档:https://cloud.google.com/cloud-build/docs/build-config#substitutions

是这样写的:

cloudbuild.yaml

substitutions:
_SUB_VALUE: world
options:
substitution_option: 'ALLOW_LOOSE'

下面的代码片段使用替换来打印"hello world."设置了ALLOW_LOOSE替换选项,这意味着如果缺少替换,则构建将不会返回错误。变量或缺失的替换。

我的情况:我不使用ALLOW_LOOSE选项。我需要做替换。我不希望应用任何默认值。如果我忘记传递任何我需要的替换,我需要它立即失败。

这是我的cloudbuild.yaml文件:

cloudbuild.yaml

substitutions: 
_SERVER_ENV: required
_TAG_NAME: required
_MIN_INSTANCES: required

我将它们的默认值初始化为required,因为如果我忘记将它们中的任何一个传递给gcloud builds submit调用,我预计构建调用会失败。

如果我调用gcloud builds submit并且不传递任何定义的替换,我预计它会失败。但是它没有失败,没有该值构建正常完成。

在文档中有这样的观察:

注意:如果你的构建是由触发器调用的,ALLOW_LOOSE选项默认设置。在这种情况下,如果缺少替换变量或缺少替换,构建将不会返回错误。您不能覆盖由触发器调用的构建的ALLOW_LOOSE选项。

但是如果我手动调用gcloud builds submit,这意味着我的构建没有被任何触发器调用,对吗?所以ALLOW_LOOSE选项不应该被启用。

这是我的完整cloudbuild.yaml:

cloudbuild.yaml

steps:
- name: "gcr.io/cloud-builders/docker"
args:
- "build"
- "--build-arg" 
- "SERVER_ENV=$_SERVER_ENV"
- "--tag"
- "gcr.io/$PROJECT_ID/server:$_TAG_NAME"
- "."
timeout: 180s
- name: "gcr.io/cloud-builders/docker"
args:
- "push"
- "gcr.io/$PROJECT_ID/server:$_TAG_NAME"
timeout: 180s
- name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
entrypoint: gcloud
args:
- "beta"
- "run"
- "deploy"
- "server"
- "--image=gcr.io/$PROJECT_ID/server:$_TAG_NAME"
- "--platform=managed"
- "--region=us-central1"
- "--min-instances=$_MIN_INSTANCES"
- "--max-instances=3"
- "--allow-unauthenticated"
timeout: 180s
images: 
- "gcr.io/$PROJECT_ID/server:$_TAG_NAME"
substitutions: 
_SERVER_ENV: required
_TAG_NAME: required
_MIN_INSTANCES: required

在您的cloudbuild.yaml文件中,当您定义substituions变量时,您将自动设置其默认值

substitutions: 
# Value = "required"
_SERVER_ENV: required 
# Value = ""
_TAG_NAME: 

尝试使用substitutions数组中未定义的变量,例如:

steps:
- name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
entrypoint: bash 
args:
- -c
- | 
# print "required"
echo $_SERVER_ENV 
# print nothing
echo $_TAG_NAME
# Error, except if you allow loose. In this case, print nothing
echo $_MIN_INSTANCES
substitutions: 
_SERVER_ENV: required
_TAG_NAME: 

相关内容

  • 没有找到相关文章

最新更新