Skip to content

[DevOps Series] Part 1: Some concepts and terminologies

Lilhuy

📚 Series Table of Contents

  1. 📖 Chapter 0: Introduction and Stories
  2. 📚 Chapter 1: Some concepts and terminologies (You are here) 🎯
  3. 🚀 Chapter 2: A noob guy deploy his web app 💻
  4. 🐳 Chapter 3: Docker and the world of containerization 📦
  5. ☸️ Chapter 4: K8s in a nutshell ⚙️
  6. 🔧 Chapter 5: K8s in details 🛠️
  7. 🏠 Chapter 6: Before go to the ground 🏡
  8. 🐧 Chapter 7: Ubuntu server and the world of Linux 🖥️
  9. Chapter 8: MicroK8s the simple and powerful K8s ⚙️
  10. ☁️ Chapter 9: Harvester HCI the native cloud 🌐
  11. 🏭 Chapter 10: More about Harvester HCI 🏢
  12. 🖥️ Chapter 11: Promox VE the best VM manager 💾
  13. 🌐 Chapter 12: Turn a server into a router with Pfsense 🔌
  14. 🛠️ Chapter 13: Some tools, services that you can installed for your devops pipeline 🔧
  15. 🌍 Chapter 14: Hello Internet with Cloudflare Zero Trust 🔒
  16. 🎉 Chapter 15: Maybe it the end of the series 🏁

Anyone who starts learning DevOps may think, “What the f*ck is all this stuff for? I just want to deploy my app.” Yes, starting with a simple Node.js backend is easy, but then you need to deal with Virtual Machines, Containers, Kubernetes, CI/CD, Nginx, IP addresses, domains, DNS, etc. I’ve been there too, so in this series, I’ll provide an overview of all these terminologies and concepts that we’ll discuss in later chapters.

1. What is DevOps?

DevOps is a set of practices and tools that help organizations deliver software faster and more efficiently. It combines development (Dev) and operations (Ops) to create a seamless workflow that allows for continuous delivery and deployment.

2. Difference between Cloud services and self-hosted (ground)

Cloud services are provided by third-party providers like AWS, GCP, Azure, etc. You pay for what you use, and you don’t need to worry about the underlying infrastructure. For self-hosted solutions, you need to manage the infrastructure yourself, install the OS on your server, install the software, configure the network, etc.

3. Virtual Machines

Just like a real machine but running inside another machine. Some VM software like VirtualBox, VMware, etc. can help you create a virtual machine. Virtual machines run on your computer but with separate OS, network, etc. Cloud service providers like AWS, GCP, Azure, etc. also provide virtual machines.

4. Stories about IP address

5. Why we need containers?

You can just create a VM, install the environment, and run your app in it. But it’s not efficient because you need to install the same environment for each VM. So we need a way to package the environment and the app into a container.

6. Why K8s?

When a single container is not enough to handle all requests, we scale it up, but when scaling multiple containers, it’s hard to manage all of them. Then we use Kubernetes, which is a container orchestration platform that allows you to manage containers across multiple nodes (a node is just a computer for easier understanding).

Still a lot of another things too

As you see in the world of DevOps, people create a tool to solve a problem, but the funny thing is that the tool creates another problem. So they will create another tool to solve the problem created by the first tool. :))) In this series, you will see this endless loop :v In this blog, I just show an overview of some terms that we talk about a lot in this series.

You don’t need to understand all of these now. Let’s just go to the next step of our journey: Chapter 2: A noob guy deploy his web app 💻


📚 Series Navigation

Previous ChapterSeries InfoNext Chapter
← Previous Chapter
📖 Introduction and Stories
DevOps Series
Chapter 1 of 16
Next Chapter →
🚀 A noob guy deploy his web app
Edit this post
Previous
[DevOps Series] Part 2: A Noob Guy Deploys His Web App
Next
[DevOps Series] Part 0: Introduction and Stories