Kubernetes Certification Training

Certs Learning’s Kubernetes Certification Training introduces you with the advantages provided by containers over the virtual machines.
You will understand why we need an orchestration tool for containers. You will also get to know the boundaries of Kubernetes – what it does and what is it not supposed to do.
You will also understand the inherent architecture of Kubernetes – master components, node components and the addons provided by it. The course will start off with learning the basic components of Kubernetes like Node, Pod, Deployment, Services, APIs etc and then teach you to create a local cluster using Ubuntu VMs.
You will also learn to deploy stateful and stateless apps on the cluster. Finally, you will learn, how to expose these app outside of the kubernetes cluster and will also get to know how to scale their apps either manually or using auto scaling. Learn the best security practices that must be followed during this container and cluster orchestration.
There is a huge shift in Devops from virtualization to containerization. Docker has been the buzzword in the technology sphere, in the recent past to ship applications as containers.
A research states that there are already 10,000 companies who have adopted containers for taking their application to production and there are already 185 million containers on use in the world. The rate of adoption of Docker is increasing by 40% every year. Now that Docker has become the most integral part of production environment, various organizations are now looking out for tools that can help them effectively manage and orchestrate their containers.
Here is when industries started adopting a Google open sourced tool called Kubernetes for effectively managing the containers.
This course is designed specifically for:
  • Professionals who want to Advance their career as a Devops Engineer
  • Professionals who want to ace the Certified Kubernetes Application Developer (CKAD) program by Cloud Native Computing Foundation
  • Individuals using containers to deploy applications to production
Following are the pre-requisites:
  • Basics of Devops and it’s need
  • Understanding the process of deploying an application from scratch to production servers
  • Knowing the difference between stateful and stateless applications
  • Basic understanding of Docker
After completing the training, you will be able to:
  • Understand the basics of Kubernetes
  • Understand the architecture of Kubernetes
  • Install and Configure a cluster on bare metal machines
  • Deploy any app (stateless and stateful) to the cluster and scale it manually or automatically
  • Manage the state with deployments
  • Understand about Services, Pods, Volumes, data and Ingress
  • Know how to schedule applications on the containers
  • Audit logs and troubleshoot the cluster
  • Create federations to manage clusters
  • Know the best security practices to follow
1
Introduction to Kubernetes

Learning Objectives: Upon completion of this module, you will get to know the difference between a virtual machine and a container, the need for Kubernetes in the world of containerization, and also what Kubernetes is not.

 Topics:

  • Docker Essentials
  • What is YAML ?
  • Basics of YAML
  • YAML Structure
  • Syntax of YAML
  • What is Virtualization?
  • What is Containerization?
  • Virtualization vs Containerization
  • Introduction to Kubernetes
  • Myth busters of Kubernetes – What Kubernetes is not?

 Hands On/Demo:

  • Install Virutal Box
  • Install Docker/Docker-client
  • Write a simple Docker File using YAML format 
  • Create a Simple docker File for a Node.js Hello World application
  • Create a Docker Image using Docker File
  • Deploy & Run the Docker Image using Nginx/Apache docker image
2
Kubernetes Architecture

Learning Objectives: Upon completion of this module, one will get to know about the key components that build a Kubernetes cluster – Master components, Node components and AddOns. We will also see how to install Kubernetes from scratch on Ubuntu VMs.

 Topics:

  • Introduction to Kubernetes Master
  • kube-apiserver
  • etcd key-value store
  • kube-scheduler
  • kube-controller-manager
  • cloud-controller-manager
  • Components of Cloud Controller Manager - Node Controller, Volume Controller, Route Controller, Service Controller
  • Introduction to Node Components of Kubernetes
  • Docker
  • kubelet
  • kube-proxy
  • kubectl
  • Add-ons in Kubernetes: Cluster DNS, Kubernetes Dashboard, Container Resource Monitoring, Cluster level logging

 Hands On/Demo:

  • Create 2 Ubuntu(17.10) VM’s in Virtual box
  • Create a single-node cluster using VMs
  • Install KubeCtl, a command line tool to manage clusters
  • Start a single-node cluster locally
  • Get cluster details
  • List all nodes associated with the cluster
  • Stopping a cluster
  • Deleting a cluster
  • Installing & Accessing the Kubernetes dashboard


3
Deploy an app to Kubernetes Cluster

Learning Objectives: In this module, you will understand how to deploy an app using Kubectl to the local Kubernetes cluster and why we need a Pod.

 Topics:

  • Introduction to Pods
  • Why do we need a Pod?
  • Pod Lifecycle
  • Working with Pods to manage multiple containers
  • Pod Preset
  • What is a Node?
  • kubectl basic commands
  • Containerized app deployment on local kubernetes cluster
  • GCP (Ephemeral) volumes

 Hands On/Demo:

  • Deploy a containerized app image in the locally setup kubernetes cluster
  • List all local deployments
  • Create a kubectl proxy for forwarding communication to cluster-wide private network
  • Curl to verify that the app is running
  • List all existing pods
  • Get description of a specific pod
  • View logs of the container
  • Execute commands directly on the container
  • Create a ephemeral volume in GCP.
  • Configure Pod to store data in GC Volumes.
4
Expose App, Scale App And Update App in Kubernetes

Learning Objectives: In this module, you will learn what a service is, how to expose the deployed app outside the Kubernetes cluster, how to scale up/down the replicas of the app and how to provide updates to the app.

 Topics:

  • What is a Service?
  • Labels and Selectors
  • Deployment Controller
  • Replica Set
  • Replication Controller
  • Scaling out a deployment using replicas
  • Horizontal pod autoscaler
  • Load balancing
  • Rolling Update
  • Ingress and its types

 Hands On/Demo:

  • Create a new service
  • Add ha-proxy to configuration file as proxy to expose the application
  • Expose the service outside the cluster using ha-proxy
  • List all services
  • Get more details of a particular service
  • Get more information about a label
  • Use labels to query required pods
  • Create a new label to the pod
  • Scale up the above deployment to 4 replicas
  • Scale down the above deployment to 2 replicas
  • Update the image of the application
  • Check the rollout status
  • Rollback an update
  • Delete the service created
5
Managing State with Deployments

Learning Objectives: After this module, you should be able to deploy both stateless applications and stateful applications. You will be able to create a stateful set and a headless service. You will also be able to scale the stateful sets and provide rolling updates.

 Topics:

  • Stateful set
  • Pod management policies: OrderedReady, Parallel
  • Update strategies: OnDelete, Rolling Update
  • Headless services
  • Persistent Volumes

 Hands On/Demo:

  • Deploy a stateless application – PHP Guestbook application backed up by Redis: Start redis master and slaves, Start the PHP Guestbook, Expose and view the PHP Guestbook, Scale up the PHP Guestbook
  • Deploy a stateful application - Deploy Wordpress site backed up by MySQL database: Create PersistentVolume, Create a secret for storing MySQL password, Deploy MySQL, Deploy WordPress, Setup Jenkins in VM using jenkins docker image, Create a pipeline in Jenkins to use *.yml files to deploy & start the application
6
Federations, Auditing and Debugging Kubernetes, Security Best Practices

Learning Objectives: Once you complete this module, you will be able to use federations in Kubernetes using kubefed. You will also be able to log the events of the Kubernetes cluster and use it to debug nodes and pods. You will get aware of how security can be enforced in the cluster that we create using the best practices.

 Topics:

  • Federated clusters
  • Debugging by looking at events such as: Pending Pods, Unreachable nodes
  • Auditing and accessing logs in Kubernetes – Log collectors and audit policy
  • Security best practices in Kubernetes

 Hands On/Demo:

  • Install kubefed
  • Deploying a federation control plane
  • Add a cluster to the federation
  • Remove a cluster from the federation
  • Labelling a federated cluster
  • Cleanup federation control plane
  • Logging and accessing logs in Kubernetes
You will never miss a lecture at Certs Learning! You can choose either of the two options:
View the recorded session of the class available in your LMS.
You can attend the missed session, in any other live batch.
To help you in this endeavor, we have added a resume builder tool in your LMS. Now, you will be able to create a winning resume in just 3 easy steps. You will have unlimited access to use these templates across different roles and designations. All you need to do is, log in to your LMS and click on the "create your resume" option.
We have limited number of participants in a live session to maintain the Quality Standards. So, unfortunately participation in a live class without enrollment is not possible. However, you can go through the sample class recording and it would give you a clear insight about how are the classes conducted, quality of instructors and the level of interaction in a class.
All the instructors at Certs Learning are practitioners from the Industry with minimum 10-12 yrs of relevant IT experience. They are subject matter experts and are trained by Certs Learning for providing an awesome learning experience to the participants.
No announcements at this moment.

Be the first to add a review.

Please, login to leave a review