We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have added the slack token in secret and changed the configmap but still no notification triggered.
The config I am using
`` ` apiVersion: v1 kind: ConfigMap metadata: name: argocd-notifications-cm data: trigger.on-sync-status-unknown: | - when: app.status.sync.status == 'Unknown' send: [app-sync-status]
template.app-sync-status: | message: | Application {{.app.metadata.name}} sync is {{.app.status.sync.status}}. Application details: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}.
apiVersion: v1 kind: Secret metadata: name: argocd-notifications-secret stringData: slack-token: ```
The text was updated successfully, but these errors were encountered:
Anyone looking into this
Sorry, something went wrong.
No branches or pull requests
I have added the slack token in secret and changed the configmap but still no notification triggered.
The config I am using
`` ` apiVersion: v1
kind: ConfigMap
metadata:
name: argocd-notifications-cm
data:
trigger.on-sync-status-unknown: |
- when: app.status.sync.status == 'Unknown'
send: [app-sync-status]
template.app-sync-status: |
message: |
Application {{.app.metadata.name}} sync is {{.app.status.sync.status}}.
Application details: {{.context.argocdUrl}}/applications/{{.app.metadata.name}}.
service.slack: |
token: $slack-token
apiVersion: v1
kind: Secret
metadata:
name: argocd-notifications-secret
stringData:
slack-token: ```
The text was updated successfully, but these errors were encountered: