mirror of https://github.com/certd/certd
67 lines
1.5 KiB
TypeScript
67 lines
1.5 KiB
TypeScript
![]() |
import { ConcurrencyStrategy, NextStrategy, Pipeline, RunStrategy } from "../../src";
|
|||
|
|
|||
|
let idIndex = 0;
|
|||
|
function generateId() {
|
|||
|
idIndex++;
|
|||
|
return idIndex + "";
|
|||
|
}
|
|||
|
export const pipeline: Pipeline = {
|
|||
|
version: 1,
|
|||
|
id: generateId(),
|
|||
|
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,
|
|||
|
},
|
|||
|
},
|
|||
|
],
|
|||
|
},
|
|||
|
],
|
|||
|
},
|
|||
|
],
|
|||
|
};
|