generated from aws-ia/terraform-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add argo events addon module (#210)
- Loading branch information
Showing
5 changed files
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Argo Events | ||
|
||
[Argo Events](https://argoproj.github.io/argo-events/) is an open source container-native event-driven workflow automation framework for Kubernetes which helps you trigger K8s objects, Argo Workflows, Serverless workloads, etc. on events from a variety of sources. Argo Events is implemented as a Kubernetes CRD (Custom Resource Definition). | ||
|
||
## Usage | ||
|
||
Argo Events can be deployed by enabling the add-on via the following. | ||
|
||
```hcl | ||
enable_argo_events = true | ||
``` | ||
|
||
You can optionally customize the Helm chart that deploys Argo Events via the following configuration. | ||
|
||
```hcl | ||
enable_argo_events = true | ||
argo_events = { | ||
name = "argo-events" | ||
chart_version = "2.4.0" | ||
repository = "https://argoproj.github.io/argo-helm" | ||
namespace = "argo-events" | ||
values = [templatefile("${path.module}/values.yaml", {})] | ||
} | ||
``` | ||
|
||
Verify argo-events pods are running. | ||
|
||
```sh | ||
$ kubectl get pods -n argo-events | ||
NAME READY STATUS RESTARTS AGE | ||
argo-events-controller-manager-bfb894cdb-k8hzn 1/1 Running 0 11m | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters