Circle CI Action
Port's Circle CI Action 可以使用客户提供的输入和port_payload
,触发new pipeline。
上图所示步骤如下:
- Port 向主题发布调用的包含管道详细信息的 "Action "消息;
- 安全主题("ORG_ID.runs")保存所有的操作调用;
- Port 的执行代理从 Kafka 主题中提取新的触发事件,并触发 Circle CI 管道。
先决条件
- Helm 必须安装才能使用海图。有关安装的更多详情,请参阅 Helm 的documentation ;
- 与 Kafka 的连接凭证由 Port 提供给您;
- 如果要触发 Circle CI 管道,需要有一个 Circle CIpersonal API token 。
进一步的步骤
- 请参阅Triggering example Circle CI。
- 通过 Intercom 联系我们,为您的组织设置 Kafka 主题。
- Install the Port execution agent to trigger the Circle CI pipeline.
触发示例
创建以下蓝图、操作和映射,以触发 Circle CI 管道。
Blueprint
{
"identifier": "circle_ci_project",
"title": "CircleCI Project",
"icon": "CircleCI",
"schema": {
"properties": {
"project_slug": {
"title": "Slug",
"type": "string"
}
},
"required": ["project_slug"]
},
"mirrorProperties": {},
"calculationProperties": {},
"relations": {}
}
Action
[
{
"identifier": "trigger_circle_ci_pipeline",
"title": "Trigger CircleCI pipeline",
"icon": "CircleCI",
"userInputs": {
"properties": {},
"required": [],
"order": []
},
"invocationMethod": {
"type": "WEBHOOK",
"agent": true,
"synchronized": false,
"method": "POST",
"url": "https://circleci.com"
},
"trigger": "DAY-2",
"requiredApproval": false
}
]
Mapping - (Should be saved as a file named invocations.json
)
要了解有关
controlThePayload
配置的更多信息,请参阅Control the payload 文档。[
{
"enabled": ".action == \"trigger_circle_ci_pipeline\"",
"url": "(env.CIRCLE_CI_URL // \"https://circleci.com\") as $baseUrl | .payload.entity.properties.project_slug | @uri as $path | $baseUrl + \"/api/v2/project/\" + $path + \"/pipeline\"",
"headers": {
"Circle-Token": "env.CIRCLE_CI_TOKEN"
},
"body": {
"branch": ".payload.properties.branch // \"main\"",
"parameters": ".payload.action.invocationMethod as $invocationMethod | .payload.properties | to_entries | map({(.key): (.value | tostring)}) | add | if $invocationMethod.omitUserInputs then {} else . end"
}
}
]
安装
- 使用以下命令添加 Port 的 Helm 软件源:
helm repo add port-labs https://port-labs.github.io/helm-charts
如果之前已经添加了此 repo,请运行
helm repo update
获取最新版本的图表。 然后运行 helm search repo port-labs
查看图表。2.用上述映射创建一个名为 invocations.json
的 JSON 文件。
3.填写所需数值后,使用以下命令安装 port-agent
图表:
helm install my-port-agent port-labs/port-agent \
--create-namespace --namespace port-agent \
--set-file controlThePayloadConfig=./invocations.json \
--set env.normal.PORT_ORG_ID=YOUR_ORG_ID \
--set env.normal.KAFKA_CONSUMER_GROUP_ID=YOUR_KAFKA_CONSUMER_GROUP \
--set env.secret.PORT_CLIENT_ID=YOUR_PORT_CLIENT_ID \
--set env.secret.PORT_CLIENT_SECRET=YOUR_PORT_CLIENT_SECRET \
--set env.secret.CIRCLE_CI_TOKEN=YOUR_CIRCLE_CI_PERSONAL_TOKEN