Tags
Language
Tags
May 2024
Su Mo Tu We Th Fr Sa
28 29 30 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1

Start Kubernetes : The Beginner's Guide to Kubernetes

Posted By: yoyoloit
Start Kubernetes : The Beginner's Guide to Kubernetes

Start Kubernetes
by Peter Jausovec

English | 2021 | ASIN: B08KGWCN6D | 234 Pages | PDF, EPUB, MOBI | 24.75 MB

If you are a developer, system administrator, or solution architect who wants to make the transition into Kubernetes an absolute breeze, this book is your key to success. This 230-page book is packed full of all the basic concepts and introductions into the more complex capabilities. And I’ve made it an exciting read with detailed explanations, colorful diagrams, practical examples, and more!

Why Kubernetes?
In recent years, Kubernetes has risen to become a leading platform for cloud-native technology. Its container orchestration capabilities have allowed for much smoother operation of applications.

Service Discovery & Load Balancing

Not only will your application adapt to any unfamiliar service discovery mechanism, but each Pod within the application will get its very own IP address that can be accessed with a single DNS. You can also load-balance across a group of Pods!

Self-Healing

When needed, Kubernetes will automatically restart and reschedule containers to ensure a healthy flow of traffic through applications.

Configuration & Secret Management

You’ll never have to rebuild your applications in order to update your configuration settings or secrets.

Scaling

Scale your application with a single command or sit back and allow the application to scale on auto-pilot based on your CPU usage.

Rollouts & Rollbacks

Piece by piece, introduce changes to your application and configuration that will allow for close monitoring and quick recovery in case of any failures

Storage Management

Quickly mount your desired storage system directly to the application; local, cloud-provider, network system, and more.

"All of these features sound great! But how hard is it to learn Kubernetes…?"
In short, Kubernetes likes to do things its own way. While mastering the platform is really just a matter of grasping a few concepts, it can feel overwhelming to the untrained eye.

Take, for example, the simple action of deploying and running an application inside Kubernetes. You have to:

Launch a Deployment that represents your application
Then, a ReplicaSet to control the Scaling
Next, you need a Service and a DNS name to access the application
Plus at least one or more Pods with containers
AND FINALLY, you can set the Configuration and/or Secrets
That’s FIVE different processes that must work seamlessly to complete one simple action. And while it’s a dream for experienced users, Kubernetes also allows for tweaks and configurations to each of those steps that drastically change their entire behavior.

To the untrained user, this complexity can be too much to handle and the terminology is completely new!

I remember when I first started learning…

"What the heck is a Pod?!"
"Why do I need Deployments?"
"ReplicaSets, Ingress, Volumes, RBAC… What is all of this?!?"
I have created this book to flatten the learning curve of Kubernetes and make sure it can be a solid tool for anyone who needs it!

Who is this book for?
If you are a developer, system administrator, or solution architect who wants to make the transition into Kubernetes an absolute breeze, this course is your key to success. For the best results, we recommend users have a basic knowledge of Docker and how to run a container or build an image. But other than that, this book can take you from scratch to master!

After reading this book, you'll be able to:

Deploy & Run Containerized Applications
Perform Updates & Rollbacks
Use Kubernetes CLI to interact with Clusters
Understand All Kubernetes Resources & How to Use Them
Combine Multiple Containers Within a Pod
Configure Containers Using Secrets, Volumes & Configuration Maps
Run Stateful Applications
Scale Applications
Extend Kubernetes Using CRDs and Operators