2023-05-09 01:19:17 +00:00
|
|
|
|
import { ConcurrencyStrategy, NextStrategy, Pipeline, RunStrategy } from "@certd/pipeline";
|
2022-11-08 14:10:42 +00:00
|
|
|
|
|
|
|
|
|
let idIndex = 0;
|
|
|
|
|
function generateId() {
|
|
|
|
|
idIndex++;
|
|
|
|
|
return idIndex + "";
|
|
|
|
|
}
|
|
|
|
|
export const pipeline: Pipeline = {
|
|
|
|
|
version: 1,
|
2023-05-09 06:11:01 +00:00
|
|
|
|
id: "aliyun.test",
|
2022-11-08 14:10:42 +00:00
|
|
|
|
title: "测试管道",
|
|
|
|
|
userId: 1,
|
|
|
|
|
triggers: [],
|
|
|
|
|
stages: [
|
|
|
|
|
{
|
|
|
|
|
id: generateId(),
|
|
|
|
|
title: "证书申请阶段",
|
|
|
|
|
concurrency: ConcurrencyStrategy.Serial,
|
|
|
|
|
next: NextStrategy.AllSuccess,
|
|
|
|
|
tasks: [
|
|
|
|
|
{
|
|
|
|
|
id: generateId(),
|
|
|
|
|
title: "申请证书任务",
|
|
|
|
|
steps: [
|
|
|
|
|
{
|
|
|
|
|
id: generateId(),
|
|
|
|
|
title: "申请证书",
|
|
|
|
|
type: "CertApply",
|
|
|
|
|
input: {
|
|
|
|
|
domains: ["*.docmirror.cn"],
|
|
|
|
|
email: "xiaojunnuo@qq.com",
|
|
|
|
|
dnsProviderType: "aliyun",
|
|
|
|
|
accessId: "111",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: generateId(),
|
|
|
|
|
title: "证书部署阶段",
|
|
|
|
|
concurrency: ConcurrencyStrategy.Serial,
|
|
|
|
|
next: NextStrategy.AllSuccess,
|
|
|
|
|
tasks: [
|
|
|
|
|
{
|
|
|
|
|
id: generateId(),
|
|
|
|
|
title: "测试输出参数任务",
|
|
|
|
|
steps: [
|
|
|
|
|
{
|
|
|
|
|
id: generateId(),
|
|
|
|
|
title: "输出参数(echo插件)",
|
|
|
|
|
type: "EchoPlugin",
|
|
|
|
|
input: {
|
|
|
|
|
cert: "cert",
|
|
|
|
|
},
|
|
|
|
|
strategy: {
|
|
|
|
|
runStrategy: RunStrategy.SkipWhenSucceed,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
};
|