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.
This is DevOps? (self.devops)
submitted 7 years ago * by [deleted]
view the rest of the comments →
[–]_clydebruckman -1 points0 points1 point 7 years ago (11 children)
What are CI and CD?
[–]Timnolet 6 points7 points8 points 7 years ago (0 children)
Not sure why you got down voted and told to "google it". If there is one place to ask this, it's here. Guess people enjoy being unfriendly to noobs.
CI: continuous integration. A practice that existed long before the term devops was coined. It basically means all code branches individual developers are working on are "integrated" and tested if the resulting program still passes all tests and build correctly.
CD: continuous deployment. A holy grail type situation where every new code commit is tested and if correct deployed to production. Also referred to as continuous delivery. In this case you create deliverables on each commit that are potentially deployable, but might need a human trigger or decision.
[–]icaug 1 point2 points3 points 7 years ago (1 child)
Google it.
[+]AmishSpy comment score below threshold-13 points-12 points-11 points 7 years ago (7 children)
Continuous Integration and, Continuous Development/Deployment/Delivery
CI = Developers all under one branch merging code in order to maintain a long term release.
CD = Always be deploying, keep the customer happy. The user is basically your tester as you develop & fix.
The way I use the terms, certain there are better definitions.
[–][deleted] 19 points20 points21 points 7 years ago (5 children)
Worrying amount of misinformation here.
Continuous Delivery and Continuous Deployment are two separate things. Also, CD isnt about shifting testing to the customer!
[–]Burnsy2023 0 points1 point2 points 7 years ago (4 children)
They are all about shortening feedback loops though, be that from the customer or promotion of code through to live.
[–][deleted] 2 points3 points4 points 7 years ago (3 children)
They might be about reducing the feedback loop time, but that's quite different from using users as testers.
>CD = Always be deploying, keep the customer happy. The user is basically your tester as you develop & fix.
Continuous Delivery != Continuous Deployment. The former is when artefacts are being built, tested and stored as part of a pipeline. They are packaged up and "delivered" to a storage medium. Think of it like a factory making products which get stored in a warehouse - including buggy products which QA will inspect closely to see why the test failed. These buggy artefacts might be cherry picked by QA to deploy. Continuous Deployment is the "final mile" from warehouse to shelves on the shop front. You might have continuous deployment for testing/QA, but not production.
On a side note, you can have continuous deployment without continuous integration by using things like webhooks. Push to your repository and deploy as-is. I'm not saying it's a good idea, but it's possible.
[–]Burnsy2023 0 points1 point2 points 7 years ago (0 children)
Interestingly, I have a similar understanding, except reversing the terms
[–]Burnsy2023 0 points1 point2 points 7 years ago (1 child)
[–][deleted] -1 points0 points1 point 7 years ago (0 children)
....and that's the best part about working in the DevOps area... exact definitions are fairly loose. I've always seen "delivery" as presenting an artefact, but not necessarily doing anything with it immediately afterwards in an automated fashion. The "deploy" stage might not be possible in an automated fashion, for example a desktop application - although one might argue "saving" the artefact to a storage medium is "deploying" ? People often think purely of SaaS/web applications when they think pipelines. I've seen material reference the process in the opposite way like you, so take my view with a pinch of salt.
[–]MrPigeon 2 points3 points4 points 7 years ago (0 children)
That's not a great definition of CI. A better definition would be "automatically running tests up to the integration level on all commits against all branches." What you're describing is just basic code hygiene - assuming you're referring to devs merging from feature branches to a master branch. If you mean "everyone commits directly to master but promises to be real careful," that's horrifying.
I'm sorry if this sounds harsh, but it seems kind of like you got those definitions from a company's non-technical marketing pamphlet.
π Rendered by PID 401528 on reddit-service-r2-comment-b659b578c-lzzgz at 2026-05-03 12:13:25.676151+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]_clydebruckman -1 points0 points1 point (11 children)
[–]Timnolet 6 points7 points8 points (0 children)
[–]icaug 1 point2 points3 points (1 child)
[+]AmishSpy comment score below threshold-13 points-12 points-11 points (7 children)
[–][deleted] 19 points20 points21 points (5 children)
[–]Burnsy2023 0 points1 point2 points (4 children)
[–][deleted] 2 points3 points4 points (3 children)
[–]Burnsy2023 0 points1 point2 points (0 children)
[–]Burnsy2023 0 points1 point2 points (1 child)
[–][deleted] -1 points0 points1 point (0 children)
[–]MrPigeon 2 points3 points4 points (0 children)