gpt4 book ai didi

continuous-integration - "pull"参数在drone中有什么作用?

转载 作者:行者123 更新时间:2023-12-02 02:56:50 25 4
gpt4 key购买 nike

在使用 drone 的过程中,我见过几个在步骤中设置 pull: true 的情况。虽然不清楚是否需要这样做,因为有些步骤省略了它。

它被使用in several examples在无人机网站上,但没有解释。

PS:我正在写这篇文章并回答我自己的问题,因为我很难找到解释这一点的文档,并且想让其他人更容易找到它。

最佳答案

你经常看到 pull: true 因为无人机 0.X 默认是不升级图像。从 drone 1.0 开始,默认是升级图像。

无人机 1.0 docs说:

If the image does not exist in the local cache, Drone instructs Docker to pull the image automatically. You will never need to manually pull images.

If the image is tagged with :latest either explicitly or implicitly, Drone attempts to pull the newest version of the image from the remote registry, even if the image exists in the local cache.

pull: if-not-exists # only pull the image if not found in the local cache
pull: always # always pull the newest version of the image
pull: never # never pull the image and always use the image in the local cache

无人机 0.8.0 docs说:

Drone does not automatically upgrade docker images. Example configuration to always pull the latest image when updates are available:

pipeline:
build:
image: golang:latest
pull: true

这是因为 CI 的可重复性是关键,进一步的更新可能会破坏您的构建。 source

关于continuous-integration - "pull"参数在drone中有什么作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60921188/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com