流水线编排

数据卷 分享链接

作者:赵红梅 最后编辑:赵红梅 于 2024-10-29 14:46:03 浏览量:159

流水线步骤可以挂载各种类型的数据卷到容器中。

临时卷

docker的临时数据卷会在流水线开始前创建,并在流水线结束后销毁。临时卷用来在流水线的各个步骤中共享文件或文件夹:

kind: pipeline spec:   stages:   - type: ci     spec:       volumes:       - name: cache         spec: {}         type: temp       steps:       - name: test         type: run         spec:           container: golang           mount:           - name: cache             path: /go           script: | -             go install             go test       - name: build         type: run         spec:           container: golang           mount:           - name: cache             path: /go           script: | -             go build

返回顶部
徐亚京
高级客户经理
17663982076
2679672214
统一服务热线 4006-8899-23
我要提问提问有任何问题,您都可以在这里提问。 问题反馈反馈点击这里,让我们聆听您的建议与反馈。