Skip to content

Commit 38eabee

Browse files
committed
added steps for enabling notifications
made review changes added link made review changes added procedure changed link
1 parent 1f05e5d commit 38eabee

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

cicd/gitops/argo-cd-custom-resource-properties.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ The `ArgoCD` custom resource is a Kubernetes Custom Resource (CRD) that describe
1111

1212
include::modules/argo-cd-command-line.adoc[leveloffset=+1]
1313
include::modules/gitops-argo-cd-properties.adoc[leveloffset=+1]
14+
include::modules/gitops-argo-cd-notification.adoc[leveloffset=+1]
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Module included in the following assemblies:
2+
//
3+
// * argo-cd-custom-resource-properties.adoc
4+
5+
:_content-type: PROCEDURE
6+
[id="gitops-argo-cd-notification_{context}"]
7+
= Enabling notifications with Argo CD instance
8+
9+
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:
10+
11+
.Procedure
12+
13+
. Set the `enabled` parameter to `true`:
14+
15+
[source,yaml]
16+
----
17+
apiVersion: argoproj.io/v1alpha1
18+
kind: ArgoCD
19+
metadata:
20+
name: example-argocd
21+
spec:
22+
notifications:
23+
enabled: true
24+
----

0 commit comments

Comments
 (0)