Version: v1.2

使用 Webhook 发送通知

在一些情况下,当我们使用工作流部署应用前后,希望能够得到部署的通知。KubeVela 提供了与 Webhook 集成的能力,支持用户在工作流中向邮件、钉钉、Slack 或者飞书发送通知。

本节将介绍如何在工作流中通过 notification 发送 Webhook 通知。

如何使用

部署如下应用部署计划,在部署组件前后,都有一个 notification 步骤发送通知:

  1. apiVersion: core.oam.dev/v1beta1
  2. kind: Application
  3. metadata:
  4. name: first-vela-workflow
  5. namespace: default
  6. spec:
  7. components:
  8. - name: express-server
  9. type: webservice
  10. properties:
  11. image: crccheck/hello-world
  12. port: 8000
  13. traits:
  14. - type: ingress
  15. properties:
  16. domain: testsvc.example.com
  17. http:
  18. /: 8000
  19. workflow:
  20. steps:
  21. - name: dingtalk-message
  22. # 指定步骤类型
  23. type: notification
  24. properties:
  25. dingding:
  26. # 钉钉 Webhook 地址,请查看:https://developers.dingtalk.com/document/robots/custom-robot-access
  27. url:
  28. value: <your dingding url>
  29. # 具体要发送的信息详情
  30. message:
  31. msgtype: text
  32. text:
  33. content: 开始运行工作流
  34. - name: application
  35. type: apply-component
  36. properties:
  37. component: express-server
  38. outputs:
  39. - name: app-status
  40. valueFrom: output.status.conditions[0].message + "工作流运行完成"
  41. - name: slack-message
  42. type: webhook-notification
  43. inputs:
  44. - from: app-status
  45. parameterKey: slack.message.text
  46. properties:
  47. slack:
  48. # Slack Webhook 地址,请查看:https://api.slack.com/messaging/webhooks
  49. url:
  50. secretRef:
  51. name: <the secret name that stores your slack url>
  52. key: <the secret key that stores your slack url>
  53. # 具体要发送的信息详情,会被 input 中的值覆盖
  54. # message:
  55. # text: condition message + 工作流运行完成

期望结果

通过与 Webhook 的对接,可以看到,在工作流中的组件部署前后,都能在对应的群聊中看到相应的信息。

通过 notification ,可以使用户方便的与 Webhook 对接消息通知。

参数说明

请参考 Notification 内置步骤