Troubleshooting errors
Failed to parse new settings¶
error converting YAML to JSON¶
YAML syntax is incorrect.
incorrect:
apiVersion: v1
kind: ConfigMap
metadata:
name: argocd-notifications-cm
data:
service.slack: |
token: $slack-token
icon: :rocket:
correct:
apiVersion: v1
kind: ConfigMap
metadata:
name: argocd-notifications-cm
data:
service.slack: |
token: $slack-token
icon: ":rocket:"
service type 'xxxx' is not supported¶
You need to check your argocd-notifications controller version. For instance, the teams integration is to support v1.1.0 and more.
Failed to notify recipient¶
notification service 'xxxx' is not supported¶
You have not defined xxxx in argocd-notifications-cm or to fail to parse settings.
config referenced xxx, but key does not exist in secret¶
- If you are using a custom secret, check that the secret is in the same namespace
- You have added the label:
app.kubernetes.io/part-of: argocdto the secret - You have tried restarting argocd-notifications controller
Example:¶
Secret:
apiVersion: v1
kind: Secret
metadata:
name: argocd-slackbot
namespace: <the namespace where argocd is installed>
labels:
app.kubernetes.io/part-of: argocd
type: Opaque
data:
slack-token: <base64encryptedtoken>
apiVersion: v1
kind: ConfigMap
metadata:
name: argocd-notifications-cm
data:
service.slack: |
token: $argocd-slackbot:slack-token