mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
24 lines
732 B
Plaintext
24 lines
732 B
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * argo-cd-custom-resource-properties.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="gitops-argo-cd-notification_{context}"]
|
|
= Enabling notifications with Argo CD instance
|
|
|
|
To enable or disable the link:https://argo-cd.readthedocs.io/en/stable/operator-manual/notifications/[Argo CD notifications controller], set a parameter in the Argo CD custom resource. By default, notifications are disabled. To enable notifications, set the `enabled` parameter to `true` in the `.yaml` file:
|
|
|
|
.Procedure
|
|
|
|
. Set the `enabled` parameter to `true`:
|
|
|
|
[source,yaml]
|
|
----
|
|
apiVersion: argoproj.io/v1alpha1
|
|
kind: ArgoCD
|
|
metadata:
|
|
name: example-argocd
|
|
spec:
|
|
notifications:
|
|
enabled: true
|
|
---- |