From 838d51c5d36dd55c6c998fd588379e5198c1a3c8 Mon Sep 17 00:00:00 2001 From: dsh Date: Thu, 8 Aug 2024 12:10:59 +0100 Subject: [PATCH] add 'what is the difference between SRE and DevOps' to roadmap FAQ (#6431) --- src/data/roadmaps/devops/faqs.astro | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/data/roadmaps/devops/faqs.astro b/src/data/roadmaps/devops/faqs.astro index 9a97dc621..41f65d855 100644 --- a/src/data/roadmaps/devops/faqs.astro +++ b/src/data/roadmaps/devops/faqs.astro @@ -23,5 +23,11 @@ export const faqs: FAQType[] = [ 'To [become a DevOps Engineer](https://roadmap.sh/devops/how-to-become-devops-engineer), you need to have technical skills in areas such as development, automation, containerization, cloud, CI/CD pipelines etc. Some sample tools and technologies to learn may include any programming language, AWS, Ansible, Terraform, Docker, Kubernetes, Jenkins, Git, and monitoring and logging tools. Gain experience by working on DevOps projects, develop a DevOps mindset, get certified, and apply for DevOps Engineer positions by highlighting your skills and experience in your resume.', ], }, + { + question: 'What is the difference between SRE and DevOps?', + answer: [ + 'The difference between [DevOps Engineer vs SRE](https://roadmap.sh/devops/devops-vs-sre) lies in focus: DevOps Engineers improve software delivery and infrastructure automation, bridging development and operations, while Site Reliability Engineers (SREs) ensure system reliability and performance, applying software engineering to operations. DevOps emphasizes CI/CD and collaboration, whereas SREs prioritize monitoring, incident response, and scalability.', + ], + }, ]; ---