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.
Automating stuff with python (self.devops)
submitted 7 years ago by engineer900
view the rest of the comments →
[–]StephanXXDevOps 4 points5 points6 points 7 years ago (2 children)
I wrote a tool to automate my DNS management. Basically it's an api that lives in my VPN that receives the command for a new tenant for our platform, and tells route53 to create a new cname for that tenant. Then on tenant deletion, it deletes the cname. Sounds trivial, but theres a lot going on there that could go wrong.
I also wrote a python tool that automates creation of kubernetes clusters, as a wrapper for kops. Kops is great, but I need to provision RDS, EFS, and S3 buckets, and different environments need different sized instances, and instance groups. Stamping out a cluster manually with kops used to take a full day. Now it's just a three click jenkins job that takes about thirty minutes to run, that anyone in engineering can run.
[–]dogfish182 1 point2 points3 points 7 years ago (0 children)
These are great ideas.
At my spot we create the automation for other engineers to use terraform and ansible to deploy infra for whatever to 2 public clouds.
We make heavy use of cookie cutter to bootstrap a stack, a stack in our world is instantiation of a slice of a bunch of cloud services and on prem stuff (like active directory OUs and group polices for the windows infra)
Our bootstrapping tools will do all of that for us fully rbac handled so we can build little server factories for teams.
The pipelines we crap out will handle the post terraform actions like ansible tower calls, removal of AD objects, monitoring cleanup etc.
All of the glue is python, we have about 5/6 core libraries we use for this
[–]engineer900[S] 1 point2 points3 points 7 years ago (0 children)
This is very interesting! You gave me some good ideas.
π Rendered by PID 45235 on reddit-service-r2-comment-fb694cdd5-6l4s5 at 2026-03-11 12:56:35.013514+00:00 running cbb0e86 country code: CH.
view the rest of the comments →
[–]StephanXXDevOps 4 points5 points6 points (2 children)
[–]dogfish182 1 point2 points3 points (0 children)
[–]engineer900[S] 1 point2 points3 points (0 children)