Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeff-vincent/argo-s3-mlops-pipeline
https://github.com/jeff-vincent/argo-s3-mlops-pipeline
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/jeff-vincent/argo-s3-mlops-pipeline
- Owner: jeff-vincent
- License: mit
- Created: 2023-01-29T22:57:22.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-28T16:50:32.000Z (about 1 year ago)
- Last Synced: 2024-06-11T16:20:29.010Z (5 months ago)
- Language: Python
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# argo-s3-mlops-pipeline
Add Argo Workflows
```
helm repo add argo https://argoproj.github.io/argo-helm
kubectl create ns argo
helm install --namespace argo my-argo-workflows argo/argo-workflows --version 0.22.8kubectl create role app --verb="*" --resource=workflows.argoproj.io --namespace argo
kubectl create sa app --namespace argo
kubectl create rolebinding app --role=app --serviceaccount=argo:app --namespace argokubectl apply -f - < \
--from-literal=aws_secret_access_key= \
--from-literal=aws_session_token=
```Deploy CronJob
```
helm template . -f values.yaml | kubectl apply -f -
```