DevOps Resources

superior_hosting_service

devops resources

DevOps resources – Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP


This repository is about gathering any useful resources and information regarding DevOps and secondly, provide some roadmap for those who want to practice DevOps.

Feel free to add more resources by sumitting pull requests

DevOps

DevOps Roadmap

  • The following path is opinionated. You can find alternative paths in the alternative roadmaps section
  • Do NOT attempt to learn everything, especially if you are a complete beginner (the burnout will make you regret you ever heard the word DevOps)
  • Learn enough to say “I know what is DevOps and I understand how to practice it”. You can learn everything else by demand or when you feel ready

The must list

TopicWhat to learnAlternativesDescription
Version ControlGitVersion Control is used everywhere and Git is the leading version control technology
ProgrammingAt least one programming languageNone. Don’t settle for learning only shell scriptingAnyone who practice DevOps should know programming to some extent
Operating SystemLinuxOther distribution of Linux 😀Operating Systems is another must when it comes to DevOps
ProtocolsDHCP, UDP, TCP, HTTP, SSHNot as an alternative, you can simply learn later: NFS, NTP, FTPLearn how these protocols work and what they are used for
ApplicationsWeb Server, Load Balancer, Cache, DatabaseLearn how they work and try out some implementations (e.g. MySQL for databases and httpd for web servers)
System DesignAvailability, Reliability, Scalability, PerformanceLearn how to design infrastructure and systems

The second must list 🙂 Seriously though, don’t try to master everything in this list and start with something that you are interested in. The order has no meaning in this case.

TopicWhat to learnAlternativesDescription
Configuration Management and IaCAnsible and TerraformCM: Chef, Puppet and Salt. IaC: Pulumi and CloudFormation
CloudAzure, AWS, GCP
ContainersPodman and KubernetesDocker instead of Podman. Nomad instead of Kubernetes
CI/CDJenkins, GitHub ActionsGitlab CI, Circle CI, Argo CD
Logging and DashboardsElastic Stack, Report Portal, GrafanaGraylog, Splunk
MonitoringPrometheusNagios, Datadog

Alternative Roadmaps

There are other DevOps roadmaps and learning plans out there. If you feel the one above is little bit too much or just want to look at other options, maybe you’ll find the following useful

NameDescription
DevOps RoadmapDevOps skills roadmap. What to to learn at each step.
DevOps 3 Weeks PlanDetailed plan on what to do at each day

Learn about DevOps

NameDescription
What is DevOps? – AmazonLearn what is DevOps by Amazon and which AWS services can help you to practice DevOps
What is DevOps? – Red HatLearn what is DevOps by Red Hat, including many interesting articles
What is DevOps? – MicrosoftLearn what is DevOps by Microsofy, including Azure DevOps service
What is DevOps? – GoogleLearn what is DevOps by Google

Learn Git

Make sure you are comfortable with the following list once you done learning Git basics

  • Commit changes to a project
  • Submit pull/merge requests
  • Working with branches
  • Rebase changes (change order, squash, …)
NameDescription
Interactive Git Branching LearningVisual and interactive way to learn Git branching
Learn git concepts, not commandsArticle on Git concepts
Codeacademy Learn GitNot Free

Programming

Practicing DevOps without knowing programming is like eating cornflakes with ketchup – it’s just doesn’t makes sense (yes, my analogies are the worst).
Here is a list of some good sites to practice programming in general:

NameComments
HackerRankPractice Coding skills
ExercismOver 48 languages and 2600 exercises
LeetCodePractice programming online

A better approach might be to actually write some DevOps related scripts or projects. Start simple. Here are some ideas:

  • Write a script that gets a number of instances and a name of a platform (AWS, local, Azure, …) as parameters and provisions those instances on the chosen platform
  • Write a script to parse logs and extract some specific information you are interested in
  • Write a script that extracts information from some website using web scraping libraries

Operating Systems

Deep dive into operation system internals. Linux should be your first choice. Here is a list of resources that will help you learn Linux.
Also, don’t waste a second on picking the right distribution. For learning OS concepts and internals, any distribution would work fine.

NameComments
Linux JourneyWritten guides + exercises + quiz
Techmint LinuxWritten articles/lessons
Linux SurvivalInteractive guide

Once you are familiar with the commands and feel comfortable enough to keep deep diving, learn some OS concepts:

  • Memory Management
  • Processes
  • Kernel
  • Virtulization

Linux Master Application

A completely free application for testing your knowledge on Linux

linux master

System Design

System Design can be a complex topic. For that reason, I’ve created a separate repository for you to learn it properly.

system design notebook

Tooling, Apps & Services

NameDescription
Periodic table of DevOps toolsTable of DevOps tools per category
DevOps tool chestList of DevOps tools
DevOps BookmarksNSIA
CNCF Cloud Native Interactive LandscapeCNCF’s recommended path through the cloud native landscape
DevOpsBookmarksTo discover tools in the devops landscape.

Interactive practice and learning sites

Learning by doing proved to be a very effective way to learn new things. If you are at a point where you don’t feel comfortable enough to do it by yourself and you look for some guidance, the following sites might assist you

NameDescription
KataKodaLinux, Docker, ML, Kubernetes, … environments and scenarios
QWIKLBASAWS, GCP, … lab practice

Community

Another great way to learn is to learn from the experience of others. For that, the are some excellent DevOps communities.

NameComments
Reddit DevOpsReddit DevOps Community
Linkedin DevOpsLinkedin DevOps Community
DevOps BitsFacebook DevOps group. Disclosure: I started it 🙂

Conferences

NameComments
DevOpsDaysDevOps Conferences around the world
VelocityOracle’s DevOps conference

Books

Read book! Practice is important and the best way to learn practical things but reading about cultures, methods, concepts, … has its own important role in your path towards mastering DevOps and SRE.

NameComments
The Phoenix ProjectDevOps explained through a story of a fictional company on the brink of a failure
The DevOps Handbook
Google SRE booksVery detailed books on the theory and also practice of SRE

Blogs & News

NameDescription
opensource.comopen source related articles including DevOps
CooperPressvarious newsletters on different topics
afreshcup“covering Ruby on Rails and whatever else I find interesting in the universe of software”
thisweekindevops.com“DevOps news without the hype”
Uber EngineeringNot only DevOps
Azure DevOps BlogMicrosoft DevOps Blog
DevOps Dudes“Shortening the system development life cycle”
Netflix Tech BlogNot Only DevOps
CloudBees Blog
Red Hat BlogNot only DevOps
Atlassian DevOps Blog
Facebook Engineering BlogNot only DevOps

Articles

NameDescription
Infrastructure as Code, Part One
DevOps Best PracticesWhat is DevOps + list of resources

DevOps Snippets

NameDescription
DevOpsnippSharing DevOps Snippets
GistNot DevOps specific

Other Great Projects

NameComments
DevOps Wiki“A wiki of Devops Tools, Tutorials and Scripts”
System Design Primer“Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.”
awesome-sreA curated list of Site Reliability and Production Engineering resources

Interview Questions

NameComments
System Design Primer“Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards.”
kdn251Interviews
DevOps ExercisesBy topic, DevOps related questions and exercises

Misc

NameDescription
CheatSheetsCheatSeets for Kubernetes, Jenkins, YAML, Groovy, etc.
Codelabs“Codelabs provide a guided, tutorial, hands-on coding experience”

Design & Architecture

NameDescription
The 12 Factor Appmust-read in my opinion
A distributed Systems Reading List

DevOps Tooling

  •  CI/CD
    •  Jenkins (Managed & on-premise, Containers supported, Plugins)
    •  GitHub Actions (Hosted service)
    •  Travis (Hosted service)
    •  CircleCI (Hosted service)
    •  GitLab CI (Hosted service and on-premise)
    •  Bamboo (Managed service and on-premise)
    •  BuildKite (Hosted)
    •  Zuul (Hosted and on-premise)
    •  Drone
    •  Tekton
    •  Argo CD

Note: “Provisioning” tools can be used to perform configuration management to some extent. The same applies for configuration management tools, which can be used for pprovisioning.

  •  Provisioning
    •  Terraform (Open Source)
    •  CloudFormation (Available only on AWS)
    •  Pulumi (Open Source)
  •  Configuration Management (all Open Source)
    •  Ansible (Agentless, Mutable Infrastructure, Procedural)
    •  Puppet (Agent, Mutable Infrastructure, Procedural)
    •  Chef (Mutable Infrastructure)
    •  Saltstack (Mutable Infrastructure)
  •  Images
  •  Cloud
    •  AWS
    •  Azure
    •  GCP
    •  OpenStack
  •  Monitoring
    •  Prometheus
    •  Nagios
    •  Datadog
    •  Zabbix
    •  Monit
    •  Statuscake – Website Uptime & Performance Monitoring
  •  Log Management
  •  Dashboards
    •  Kibana (Elastic)
    •  Grafana
    •  Report Portal
  •  Security
    •  Vault – “Secure, store and tightly control access to tokens, passwords, certificates, encryption keys for protecting secrets…”
    •  Open Policy Agent – “Flexible, fine-grained control for administrators across the stack”
  •  Code review
    •  Gerrit – Code Review system
    •  PullPanda – A collection of Tools such as reminder & analytics
    •  Review Board
  •  Issue Tracking
    •  Jira
    •  Bugzilla
  •  Code coverage
    •  Cobertura
    •  Clover
    •  JaCoCo
  •  Data Processors
    •  Spark
    •  Apache Hadoop
    •  Apache Airflow
    •  Presto
  •  Analytics Engines
    •  Druid
    •  Dremio
    •  Snowflake
  •  Operations Data
    •  Salesforce
    •  Zuora

More Infra & DevOps projects

devops exercises
how they devops
infraverse

Credits

Images and icons attribution can be found here