#gitops (2020-07)
Discuss continuous delivery of infrastructure
Archive: https://archive.sweetops.com/gitops/
2020-07-23

anyone got a gitops flavored solution for triggering K8s Jobs that they like?

here’s the “problem” i’m after: a dev who doesn’t use kubectl
should be able to kick a job, check its status, view logs

example use case might be data scientist who wants to run a processing job

current approach is:
• push a git tag
• the CI builds the image
• syncs the job chart at that image

so the CI becomes her way of seeing job status / tailing logs

I think this is fine but not crazy about tying up a build for 1+ hours just to tail logs. Also +1 for a simple web UI

current solution under consideration is Argo: the UI is a little perplexing but shows status & logs. Also frees up the build as the CI can just build image, update values, and be done.

thanks

Argo events or Brigade seem better suited for this than having a CI system tail logs

don’t know brigade thanks I’ll check it out; I agree re: CI tailing logs

anyone create a custom github homebrew tap in a private repo ? getting authorization errors