HOME > IT & Software > Learn DevOps- The Complete Kubernetes Course

Learn DevOps- The Complete Kubernetes Course

SynopsisLearn DevOps: The Complete Kubernetes Course, available at $1...
Learn DevOps- The Complete Kubernetes Course  No.1

Learn DevOps: The Complete Kubernetes Course, available at $119.99, has an average rating of 4.44, with 147 lectures, 3 quizzes, based on 15760 reviews, and has 106955 subscribers.

You will learn about Install and configure Kubernetes (on your laptop/desktop or production grade cluster on AWS) Use Docker Client (with kubernetes), kubeadm, kops, or minikube to setup your cluster Be able to run stateless and stateful applications on Kubernetes Use Healthchecks, Secrets, ConfigMaps, placement strategies using Node/Pod affinity / anti-affinity Use StatefulSets to deploy a Cassandra cluster on Kubernetes Add users, set quotas/limits, do node maintenance, setup monitoring Use Volumes to provide persistence to your containers Be able to scale your apps using metrics Package applications with Helm and write your own Helm charts for your applications Automatically build and deploy your own Helm Charts using Jenkins Install and use kubeless to run functions (Serverless) on Kubernetes Install and use Istio to deploy a service mesh on Kubernetes Continuously Develop using Skaffold This course is ideal for individuals who are There is no prior knowledge needed, but a dev/ops/cloud/linux/networks background will definitely help or The course optionally uses Kubernetes on AWS. If you want to learn more about AWS itself, you will need to read some AWS documentation or take another AWS course. The course only explains how to use Kubernetes on AWS, it doesnt explain how to use AWS itself. Still, all steps that you need to follow are explained in this course. It is particularly useful for There is no prior knowledge needed, but a dev/ops/cloud/linux/networks background will definitely help or The course optionally uses Kubernetes on AWS. If you want to learn more about AWS itself, you will need to read some AWS documentation or take another AWS course. The course only explains how to use Kubernetes on AWS, it doesnt explain how to use AWS itself. Still, all steps that you need to follow are explained in this course.

Enroll now: Learn DevOps: The Complete Kubernetes Course

Summary

Title: Learn DevOps: The Complete Kubernetes Course

Price: $119.99

Average Rating: 4.44

Number of Lectures: 147

Number of Quizzes: 3

Number of Published Lectures: 147

Number of Published Quizzes: 3

Number of Curriculum Items: 150

Number of Published Curriculum Objects: 150

Number of Practice Tests: 2

Number of Published Practice Tests: 2

Original Price: 34.99

Quality Status: approved

Status: Live

What You Will Learn

  • Install and configure Kubernetes (on your laptop/desktop or production grade cluster on AWS)
  • Use Docker Client (with kubernetes), kubeadm, kops, or minikube to setup your cluster
  • Be able to run stateless and stateful applications on Kubernetes
  • Use Healthchecks, Secrets, ConfigMaps, placement strategies using Node/Pod affinity / anti-affinity
  • Use StatefulSets to deploy a Cassandra cluster on Kubernetes
  • Add users, set quotas/limits, do node maintenance, setup monitoring
  • Use Volumes to provide persistence to your containers
  • Be able to scale your apps using metrics
  • Package applications with Helm and write your own Helm charts for your applications
  • Automatically build and deploy your own Helm Charts using Jenkins
  • Install and use kubeless to run functions (Serverless) on Kubernetes
  • Install and use Istio to deploy a service mesh on Kubernetes
  • Continuously Develop using Skaffold
  • Who Should Attend

  • There is no prior knowledge needed, but a dev/ops/cloud/linux/networks background will definitely help
  • The course optionally uses Kubernetes on AWS. If you want to learn more about AWS itself, you will need to read some AWS documentation or take another AWS course. The course only explains how to use Kubernetes on AWS, it doesnt explain how to use AWS itself. Still, all steps that you need to follow are explained in this course.
  • Target Audiences

  • There is no prior knowledge needed, but a dev/ops/cloud/linux/networks background will definitely help
  • The course optionally uses Kubernetes on AWS. If you want to learn more about AWS itself, you will need to read some AWS documentation or take another AWS course. The course only explains how to use Kubernetes on AWS, it doesnt explain how to use AWS itself. Still, all steps that you need to follow are explained in this course.
  • This course will help you to gain understanding how to deploy, use, and maintain your applications on Kubernetes. If you are into DevOps, this is a technology you need to master. Kubernetes has gained a lot of popularity lately and it is a well sought skill by companies.

    This course is updated frequently to include the features of latest releases!

    When Google started running containers a decade ago, nobody could reach this kind of infrastructure agility and efficiency. Using this knowledge, Google released Kubernetes as an free and open source project. Nowadays Kubernetes is used by small companies and big enterprises who want to gain the efficiency and velocity Google has.

    You can containerize applications using Docker. You can then run those containers on your servers, but there’s no way you can manage those efficiently without extra management software. Kubernetes is an orchestrator for your containers that will create, schedule and manage your containers on a cluster of servers. Kubernetes can run on-premise or in the cloud, on a single machine or on thousands of machines.

    I will show you how to build apps in containers using docker and how to deploy those on a Kubernetes cluster. I will explain you how to setup your cluster on your desktop, or on the cloud using AWS. I use a real world example app (WordPress with MySQL – blogging software) to show you the real power of Kubernetes: scheduling stateless and stateful applications.

    The introduction lectures that show you the Kubernetes desktop installation are free to preview, so you can already have a go at it before buying the course!

    This course also has Closed Captions (English subtitles)

    Updates (11/2019):

    * Added Admission Controllers lectures

    * Continuous Development with Skaffold

    * etcd and the raft algorithm

    Updates (01/2020):

    * AWS EKS (managed Kubernetes) lecture and demo

    Updates (01/2021):

    * MutatingWebhook, ValidatingWebhook and demo

    Updates (04/2024):

    * How to write a Kubernetes Operator Controller in Go

    Course Curriculum

    Chapter 1: Course Introduction

    Lecture 1: Course Introduction

    Lecture 2: Support and Course Materials

    Lecture 3: Procedure Document

    Chapter 2: Introduction to Kubernetes

    Lecture 1: Kubernetes Introduction

    Lecture 2: Containers Introduction

    Lecture 3: Kubernetes Setup

    Lecture 4: Local Setup with minikube

    Lecture 5: Demo: Minikube

    Lecture 6: Installing Kubernetes using the Docker Client

    Lecture 7: Minikube vs Docker Client vs Kops vs Kubeadm

    Lecture 8: Introduction to Kops

    Lecture 9: Demo: Preparing kops install

    Lecture 10: Demo: Preparing AWS for kops install

    Lecture 11: Demo: DNS Troubleshooting (Optional)

    Lecture 12: Demo: Cluster setup on AWS using kops

    Lecture 13: Building docker images

    Lecture 14: Demo: Building docker images

    Lecture 15: Docker Image Registry

    Lecture 16: Demo: Pushing Docker Image

    Lecture 17: Running first app on Kubernetes

    Lecture 18: Demo: Running first app on Kubernetes

    Lecture 19: Demo: Useful commands

    Lecture 20: Service with LoadBalancer

    Lecture 21: Demo: Service with AWS ELB LoadBalancer

    Lecture 22: Recap: introduction to Kubernetes

    Chapter 3: Kubernetes Basics

    Lecture 1: Node Architecture

    Lecture 2: Replication Controller

    Lecture 3: Demo: Replication Controller

    Lecture 4: Deployments

    Lecture 5: Demo: Deployments

    Lecture 6: Services

    Lecture 7: Demo: Services

    Lecture 8: Labels

    Lecture 9: Demo: NodeSelector using Labels

    Lecture 10: Healthchecks

    Lecture 11: Demo: Healthchecks

    Lecture 12: Readiness Probe

    Lecture 13: Demo: Liveness and Readiness probe

    Lecture 14: Pod State

    Lecture 15: Pod Lifecycle

    Lecture 16: Demo: Pod Lifecycle

    Lecture 17: Secrets

    Lecture 18: Demo: Credentials using Volumes

    Lecture 19: Demo: Running WordPress on Kubernetes

    Lecture 20: WebUI

    Lecture 21: Demo: Web UI in Kops

    Lecture 22: Demo: WebUI

    Chapter 4: Advanced Topics

    Lecture 1: Service Discovery

    Lecture 2: Demo: Service Discovery

    Lecture 3: ConfigMap

    Lecture 4: Demo: ConfigMap

    Lecture 5: Ingress Controller

    Lecture 6: Demo: Ingress Controller

    Lecture 7: External DNS

    Lecture 8: Demo: External DNS

    Lecture 9: Volumes

    Lecture 10: Demo: Volumes

    Lecture 11: Volumes Autoprovisioning

    Lecture 12: Demo: WordPress With Volumes

    Lecture 13: Pod Presets

    Lecture 14: Demo: Pod Presets

    Lecture 15: StatefulSets

    Lecture 16: Demo: StatefulSets

    Lecture 17: Daemon Sets

    Lecture 18: Resource Usage Monitoring

    Lecture 19: Demo: Resource Monitoring using Metrics Server

    Lecture 20: Demo: Resource Usage Monitoring

    Lecture 21: Autoscaling

    Lecture 22: Demo: Autoscaling

    Lecture 23: Affinity / Anti-Affinity

    Lecture 24: Demo: Affinity / Anti-Affinity

    Lecture 25: Interpod Affinity and Anti-affinity

    Lecture 26: Demo: Interpod Affinity

    Lecture 27: Demo: Interpod Anti-Affinity

    Lecture 28: Taints and Tolerations

    Lecture 29: Demo: Taints and Tolerations

    Lecture 30: Custom Resource Definitions (CRDs)

    Lecture 31: Operators

    Lecture 32: Demo: postgresql-operator

    Chapter 5: Kubernetes Administration

    Lecture 1: The Kubernetes Master Services

    Lecture 2: Resource Quotas

    Lecture 3: Namespaces

    Lecture 4: Demo: Namespace quotas

    Lecture 5: User Management

    Lecture 6: Demo: Adding Users

    Lecture 7: RBAC

    Lecture 8: Demo: RBAC

    Lecture 9: Networking

    Lecture 10: Node Maintenance

    Lecture 11: Demo: Node Maintenance

    Lecture 12: High Availability

    Lecture 13: Demo: High Availability

    Instructors

  • Learn DevOps- The Complete Kubernetes Course  No.2
    Edward Viaene
    DevOps & Cloud Specialist
  • Rating Distribution

  • 1 stars: 234 votes
  • 2 stars: 344 votes
  • 3 stars: 1839 votes
  • 4 stars: 6109 votes
  • 5 stars: 7234 votes
  • Frequently Asked Questions

    How long do I have access to the course materials?

    You can view and review the lecture materials indefinitely, like an on-demand channel.

    Can I take my courses with me wherever I go?

    Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!