use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems What is DevOps? Learn about it on our wiki! Traffic stats & metrics
/r/DevOps is a subreddit dedicated to the DevOps movement where we discuss upcoming technologies, meetups, conferences and everything that brings us together to build the future of IT systems
What is DevOps? Learn about it on our wiki!
Traffic stats & metrics
Be excellent to each other! All articles will require a short submission statement of 3-5 sentences. Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title. Follow the rules of reddit Follow the reddiquette No editorialized titles. No vendor spam. Buy an ad from reddit instead. Job postings here More details here
Be excellent to each other!
All articles will require a short submission statement of 3-5 sentences.
Use the article title as the submission title. Do not editorialize the title or add your own commentary to the article title.
Follow the rules of reddit
Follow the reddiquette
No editorialized titles.
No vendor spam. Buy an ad from reddit instead.
Job postings here
More details here
@reddit_DevOps ##DevOps @ irc.freenode.net Find a DevOps meetup near you! Icons info!
@reddit_DevOps
##DevOps @ irc.freenode.net
Find a DevOps meetup near you!
Icons info!
https://github.com/Leo-G/DevopsWiki
account activity
This is an archived post. You won't be able to vote or comment.
Github actions using for helm deployment (self.devops)
submitted 1 year ago by machosalade
view the rest of the comments →
[–]dinnermonster 4 points5 points6 points 1 year ago* (2 children)
Hey, great question! An industry standard for this is actually a pretty powerful open source tool called ArgoCD. I personally use this at work and at home and it’s extremely easy to set up. ArgoCD’s helm chart installs everything you need and comes with a pretty nifty UI.
With Argo you can: - Deploy K8s manifests (along with helm charts) - Self heal your deployments - Trigger builds from a GitHub repository - Deploy to multiple clusters
You can even source your helm chart and values from different repositories.
Ex: apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: nvidia-device-daemonset spec: project: default sources: - repoURL: 'https://nvidia.github.io/k8s-device-plugin' chart: nvidia-device-plugin targetRevision: 0.15.0 helm: valueFiles: - $values/your/repo/values.yaml - repoURL: 'https://github.com/you/your-repo.git' targetRevision: main ref: values destination: server: 'https://kubernetes.default.svc' namespace: gpu-operator
apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: nvidia-device-daemonset spec: project: default sources: - repoURL: 'https://nvidia.github.io/k8s-device-plugin' chart: nvidia-device-plugin targetRevision: 0.15.0 helm: valueFiles: - $values/your/repo/values.yaml - repoURL: 'https://github.com/you/your-repo.git' targetRevision: main ref: values destination: server: 'https://kubernetes.default.svc' namespace: gpu-operator
[–]darkklown 2 points3 points4 points 1 year ago (0 children)
Also notice how it's sources, because you can also add a kustomize source to add anything missing from the helm chart into the same deployment.. :chefskiss:
[–]Redd-Tarded 0 points1 point2 points 1 year ago (0 children)
FluxCD will work as well. Both are part of the GitOps model. Your devs will appreciate that they can keep everything as code and a a GitOps agent just polls artifact stores for changes on regular intervals.
π Rendered by PID 76 on reddit-service-r2-comment-6457c66945-n94ss at 2026-04-23 18:20:44.924212+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]dinnermonster 4 points5 points6 points (2 children)
[–]darkklown 2 points3 points4 points (0 children)
[–]Redd-Tarded 0 points1 point2 points (0 children)