如何将Rundeck工作结果发布到Webhook

时间:2018-11-05 05:54:15

标签: webhooks rundeck

如何将标准作业结果发布到webhook?

在梯级作业UI中,我可以选择 “ webhook”选项,但是要放在那个框中?

我知道如何发布到Webhook编写命令行 在python中,但是不知道如何处理rundeck。

1 个答案:

答案 0 :(得分:0)

您可以将webhook变量传递到预定义的url进行接收,例如:

http://server/callback?id=${execution.id}&status=${execution.status}&trigger=${notification.trigger}

您可以在此处看到完整的参考:

https://rundeck.org/docs/manual/notifications/webhooks.html

您有一个很好的CGI示例来接收Webhooks参数:

https://gist.github.com/gschueler/4219733