Spring Cloud Pipelines 1.0.0.M6 已发布,该版本新增了一个 Pipeline descriptor
每个应用程序都可以包含一个名为 pipeline.yml 的文件,具有以下结构:
lowercaseEnvironmentName1:
services:
- type: service1Type
name: service1Name
coordinates: value
- type: service2Type
name: service2Name
key: value
lowercaseEnvironmentName2:
services:
- type: service3Type
name: service3Name
coordinates: value
- type: service4Type
name: service4Name
key: value
其他更新:
功能:
Added pipeline.yml where you define necessary infrastructure applications to be deployed for tests
Make the stub runner work with embedded stubs enhancement
Added option to customize buildpack
Bug 修复:
Add script for removing prod tags from sample repos enhancement
Fix remove-prod-tags.sh script enhancement
Wrong mysql name is picked for stage bug
API compatibility check fails if no tests are found bug
Other bug fixes
重构:
Initial work by @nebhale on refactoring the Concourse pipeline
Removed any notion of Cloud Foundry and demo applications from root scripts
文档修复:
Explain in the docs what the demo apps look like
研发自动化一直是大公司才具备的能力,Spring Cloud Pipelines 模块实现了一个基于 spring cloud 架构的研发自动化流程,试图解决以下问题:
创建公共部署管道
传播良好的测试和部署实践
加快将功能部署到生产所需的时间
运行、配置和部署应用的常见方式,降低新开发人员在更改项目时融入的成本和时间
软件详情:https://github.com/spring-cloud/spring-cloud-pipelines/releases/tag/v1.0.0.M6
下载地址:https://github.com/spring-cloud/spring-cloud-pipelines/archive/v1.0.0.M6.zip
来自:开源中国社区

