community.general.rollbar_deployment 模块 – 通知 Rollbar 应用部署
注意
此模块是 community.general 集合(版本 10.1.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了这个集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。
要在 playbook 中使用它,请指定:community.general.rollbar_deployment
。
概要
通知 Rollbar 应用部署(请参阅 https://rollbar.com/docs/deploys_other/)
参数
参数 |
注释 |
---|---|
部署注释(例如,正在部署什么)。 |
|
正在部署的环境的名称,例如“production”。 |
|
正在部署的版本号/sha。 |
|
部署用户的 Rollbar 用户名。 |
|
您的项目访问令牌。 |
|
用于提交通知的可选 URL。 默认值: |
|
部署用户。 |
|
如果 选择
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持:完全 |
可以在 |
|
支持:无 |
当处于 diff 模式时,将返回已更改(或可能需要在 |
示例
- name: Rollbar deployment notification
community.general.rollbar_deployment:
token: AAAAAA
environment: staging
user: ansible
revision: '4.2'
rollbar_user: admin
comment: Test Deploy
- name: Notify rollbar about current git revision deployment by current user
community.general.rollbar_deployment:
token: "{{ rollbar_access_token }}"
environment: production
revision: "{{ lookup('pipe', 'git rev-parse HEAD') }}"
user: "{{ lookup('env', 'USER') }}"