Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
September 18, 2022 07:59 am GMT

Books to learn Kubernetes from beginner to advanced

Introduction

Kubernetes is a popular tool with DevOps engineers, but learning and using it is difficult for beginners. So in this article, I want to introduce to everyone the books that have helped me learn Kubernetes from scratch.

Basic level

Kubernetes in Action

This book is for those who don't know anything about Kubernetes: Kubernetes in Action, Second Edition.

Kubernetes in Action

Kubernetes in Action is a great book that teaches you about Kubernetes by examples, you will learn the basics of Kubernetes in this book. After reading this book, you will know the following concepts:

  • What is Kubernetes?
  • Why do we need Kubernetes?
  • How does Kubernetes manage Containers?
  • How does Kubernetes scale Containers?
  • Kubernetes internal architecture.
  • etc...

Kubernetes Best Practices - Blueprints for Building Successful Applications on Kubernetes

This book is to practice more about Kubernetes: Kubernetes Best Practices.

Kubernetes Best Practices

You will learn how to install various applications using Kubernetes in this book. For example:

  • How to install the Ingress Controller?
  • How to install Prometheus?
  • How to install Elasticsearch, Logstash, and Kibana?
  • Best practice to manage ConfigMaps and Secrets.
  • How to build CI/CD system on Kubernetes?
  • etc...

Middle

After reading the above books, you can use Kubernetes in the production environment. But if you want to understand more about Kubernetes, the next book will help you.

Managing Kubernetes

There are two roles when you work with Kubernetes: Kubernetes Developer and Kubernetes Administrator.

Kubernetes Developers write the manifest files for the application and deploy them on Kubernetes.

Kubernetes Administrators set up, manage, and operate the Kubernetes Cluster so that it can be easily used by the Developers.

The Managing Kubernetes book will show you how to manage Kubernetes.

Managing Kubernetes

You will learn:

  • How to run Kubernetes in Production?
  • How to manage the Kubernetes cluster?
  • How to back up the Kubernetes Cluster.
  • etc...

Kubernetes Operators

Operators are software extensions to Kubernetes that make use of custom resources to manage applications and their components. Operators follow Kubernetes principles, notably the control loop. Kubernetes Operators examples:

Argo Rollout.

Elastic Cloud on Kubernetes (ECK).

Confluent for Kubernetes.

Operators are clients of the Kubernetes API that act as controllers for a Custom Resource, for example:

Kafka CRDs

Just a simple manifest file to deploy Kafka . This is a guidebook for you to design and build the Operators: Kubernetes Operators.

Kubernetes Operators

Advanced

These two books are for understanding deep into Kubernetes.

GitOps and Kubernetes

This book will explain the concept of GitOps and how to build CI/CD in Kubernetes: GitOps and Kubernetes.

GitOps and Kubernetes

You will learn:

  • How to build the CI/CD?
  • Canary and blue-green deployment.
  • Security.
  • ArgoCD, Jenkins X, Flux.
  • etc...

Core Kubernetes

Finally, a book that will take your understanding of Kubernetes to a whole new level: Core Kubernetes.

Core Kubernetes

This book will teach you the core components of Kubernetes. I haven't finished reading this book yet, but it is a great book.

Conclusion

Hoping these books will be useful to everyone. If you know good books, please recommend them to everyone .


Original Link: https://dev.to/devopsvn/books-to-learn-kubernetes-from-beginner-to-advanced-183c

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To