Templates
The notification template is used to generate the notification content and configured in argocd-notifications-cm ConfigMap. The template is leveraging
html/template golang package and allow to customize notification message.
Templates are meant to be reusable and can be referenced by multiple triggers.
The following template is used to notify the user about application sync status.
apiVersion: v1
kind: ConfigMap
metadata:
name: argocd-notifications-cm
data:
template.my-custom-template-slack-template: |
message: |
Application {{.app.metadata.name}} sync is {{.app.status.sync.status}}.
Application details: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}.
Each template has access to the following fields:
appholds the application object.contextis user defined string map and might include any string keys and values.serviceTypeholds the notification service type name. The field can be used to conditionally render service specific fields.recipientholds the recipient name.
Defining user-defined context¶
It is possible to define some shared context between all notification templates by setting a top-level YAML document of key-value pairs, which can then be used within templates, like so:
apiVersion: v1
kind: ConfigMap
metadata:
name: argocd-notifications-cm
data:
context: |
region: east
environmentName: staging
template.a-slack-template-with-context: |
message: "Something happened in {{ .context.environmentName }} in the {{ .context.region }} data center!"
Notification Service Specific Fields¶
The message field of the template definition allows creating a basic notification for any notification service. You can leverage notification service-specific
fields to create complex notifications. For example using service-specific you can add blocks and attachments for Slack, subject for Email or URL path, and body for Webhook.
See corresponding service documentation for more information.
Change the timezone¶
You can change the timezone to show it as follows.
- Call time functions.
{{ (call .time.Parse .app.status.operationState.startedAt).Local.Format "2006-01-02T15:04:05Z07:00" }}
- Set environment to container.
apiVersion: apps/v1
kind: Deployment
metadata:
name: argocd-notifications-controller
spec:
(snip)
spec:
containers:
- name: argocd-notifications-controller
env:
- name: TZ
value: Asia/Tokyo
Functions¶
Templates have access to the set of built-in functions:
apiVersion: v1
kind: ConfigMap
metadata:
name: argocd-notifications-cm
data:
template.my-custom-template-slack-template: |
message: "Author: {{(call .repo.GetCommitMetadata .app.status.sync.revision).Author}}"
time¶
Time related functions.
time.Now() Time
Executes function built-in Golang time.Now function. Returns an instance of Golang Time.
time.Parse(val string) Time
Parses specified string using RFC3339 layout. Returns an instance of Golang Time.
strings¶
String related functions.
strings.ReplaceAll() string
Executes function built-in Golang strings.ReplaceAll function.
strings.ToUpper() string
Executes function built-in Golang strings.ToUpper function.
strings.ToLower() string
Executes function built-in Golang strings.ToLower function.
sync¶
sync.GetInfoItem(app map, name string) string
Returns the info item value by given name stored in the Argo CD App sync operation.
repo¶
Functions that provide additional information about Application source repository.
repo.RepoURLToHTTPS(url string) string
Transforms given GIT URL into HTTPs format.
repo.FullNameByRepoURL(url string) string
Returns repository URL full name (<owner>/<repoName>). Currently supports only Github, GitLab and Bitbucket.
repo.GetCommitMetadata(sha string) CommitMetadata
Returns commit metadata. The commit must belong to the application source repository. CommitMetadata fields:
Message stringcommit messageAuthor string- commit authorDate time.Time- commit creation dateTags []string- Associated tags
repo.GetAppDetails() AppDetail
Returns application details. AppDetail fields:
Type string- AppDetail typeHelm HelmAppSpec- Helm details- Fields :
Name stringValueFiles []stringParameters []*v1alpha1.HelmParameterValues stringFileParameters []*v1alpha1.HelmFileParameter
- Methods :
GetParameterValueByName(Name string)Retrieve value by name in Parameters fieldGetFileParameterPathByName(Name string)Retrieve path by name in FileParameters field *
Kustomize *apiclient.KustomizeAppSpec- Kustomize detailsDirectory *apiclient.DirectoryAppSpec- Directory details