天天看点

02 - Argo Workflow - 搭建简单的 CI/CD

官网 https://argoproj.github.io/argo-workflows/quick-start/

如果浏览器报错说是证书问题, chrome 的话, enable chrome://flags/#allow-insecure-localhost 参考 https://gitee.com/mrgebi/learn-argo/tree/master/admin

dag 用于对运行的任务做编排处理, 包括任务之间的执行顺序,依赖关系等等。

entrypoint workflow 的执行入口

template https://gitee.com/mrgebi/learn-argo/blob/master/helloworld/learn01/helloworld.yaml#L55 定义具体的任务

ci/cd 代码 https://gitee.com/mrgebi/learn-argo/blob/master/helloworld/learn01/helloworld.yaml

你会在终端看到完整的 workflow 的执行过程。 非常的清晰明了。

02 - Argo Workflow - 搭建简单的 CI/CD