Notification
Notification action sends notification.
notify-deployment-restarts.yamlapiVersion: mission-control.flanksource.com/v1
kind: Playbook
metadata:
name: notify-file-creation
spec:
description: Sends Telegram notification when a file is created
parameters:
- name: path
label: path of the file
actions:
- name: 'Create the file'
exec:
script: touch {{.params.path}}
- name: 'Send notification'
notification:
connection: connection://telegram/aditya
title: 'File {{.params.path}} created successfully'
message: 'File "{{.params.path}}" created successfully'
Field | Description | Scheme |
---|---|---|
message* | Message is the body of the notification | string |
name* | Step Name | string |
title* | Title of the notification | string |
connection | Connection to use to send the notification | |
properties | Notification channel properties | |
url | Notification URL | |
delay | A delay before running the action e.g. |
|
filter | Conditionally run an action | CEL with Playbook Context |
runsOn | Which runner (agent) to run the action on | |
templatesOn | Where templating (and secret management) of actions should occur |
|
timeout | Timeout on this action. |
You must specify
url
orconnection
but not both
Templating
CEL Expressions
The following variables can be used within the CEL expressions of filter
, if
, delays
and parameters.default
:
Field | Description | Schema |
---|---|---|
config | Config passed to the playbook | ConfigItem |
component | Component passed to the playbook | Component |
check | Canary Check passed to the playbook | Check |
playbook | Playbook passed to the playbook | Playbook |
run | Current run | Run |
params | User provided parameters to the playbook | map[string]any |
request | Webhook request | Webhook Request |
env | Environment variables defined on the playbook | map[string]any |
user.name | Name of the user who invoked the action | string |
user.email | Email of the user who invoked the action | string |
agent.id | ID of the agent the resource belongs to. | string |
agent.name | Name of the agent the resource belongs to. | string |
Conditionally Running Actions
Defaulting Parameters
Go Templating
When templating actions
with Go Templates, the context variables are available as fields of the template's context object .
eg .config
, .user.email
Templating Actions
Functions
Function | Description | Return |
---|---|---|
getLastAction() | Returns the result of the action that just run | Action Specific |
getAction({action}) | Return the result of a specific action | Action Specific |