Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ak9024/argo-workflows
https://github.com/ak9024/argo-workflows
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ak9024/argo-workflows
- Owner: ak9024
- Created: 2024-06-07T09:27:38.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-08T16:06:26.000Z (5 months ago)
- Last Synced: 2024-06-09T00:33:08.622Z (5 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# argo-workflows
Kubernetes-native workflow engine supporting DAG and step-based workflows.
### Install argo-workflows with helm
```bash
helm install argo-workflows argo/argo-workflows \
--create-namespace --namespace argo \
--set crds.install=false
```### Apply RBAC and Create Secret
```bash
kubectl apply -k .
```### Expose token
```bash
ARGO_TOKEN="Bearer $(kubectl get secret argo-service-account -o=jsonpath='{.data.token}' | base64 --decode)"
```### Verify roles
```bash
kubectl auth can-i create pods --as=system:serviceaccount:argo:argo-service-account
kubectl auth can-i list deployments --as=system:serviceaccount:argo:argo-service-account
```### Create ingress
```bash
kubectl apply -f ingress.yaml
```