Skip to content
New issue

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

[enterprise-4.11] RHDEVDOCS-4113 - Added steps for enabling notifications #46668

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions cicd/gitops/argo-cd-custom-resource-properties.adoc
Expand Up @@ -11,3 +11,4 @@ The `ArgoCD` custom resource is a Kubernetes Custom Resource (CRD) that describe

include::modules/argo-cd-command-line.adoc[leveloffset=+1]
include::modules/gitops-argo-cd-properties.adoc[leveloffset=+1]
include::modules/gitops-argo-cd-notification.adoc[leveloffset=+1]
24 changes: 24 additions & 0 deletions modules/gitops-argo-cd-notification.adoc
@@ -0,0 +1,24 @@
// Module included in the following assemblies:
//
// * argo-cd-custom-resource-properties.adoc

:_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
----