https://github.com/zephinzer/poc-argoworkflows
https://github.com/zephinzer/poc-argoworkflows
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/zephinzer/poc-argoworkflows
- Owner: zephinzer
- License: wtfpl
- Created: 2024-01-10T10:29:35.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-08T07:01:49.000Z (over 2 years ago)
- Last Synced: 2025-03-27T15:21:54.359Z (about 1 year ago)
- Language: Mustache
- Size: 56.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# POC project for Argo Workflows
# Reference documents
1. [Workflow-related CRD specifications](https://argo-workflows.readthedocs.io/en/latest/fields/)
2. [Sensor CRD specification](https://github.com/argoproj/argo-events/blob/master/api/sensor.md)
# Steps taken
## Helm installation
1. Add the Helm repo
```sh
helm repo add argo https://argoproj.github.io/argo-helm;
```
2. Search for the `argo/argo-workflows` Helm chart
```sh
helm search repo argo-workflows
# sample output
NAME CHART VERSION APP VERSION DESCRIPTION
argo/argo-workflows 0.40.3 v3.5.2 A Helm chart for Argo Workflows
```
3. Added correct version (`0.40.3`` in above example output) as a chart dependency
4. Run `helm dep update`