Course Information
Course Overview
A comprehensive guide to Kubernetes: 45 Labs and 50 Practice Questions
Kubernetes is a container orchestration technology - a way to create and deploy clusters of machines running containers, usually Docker containers.
Kubernetes is also one of the hottest topics in tech today, because it is perhaps the only straightforward way to architect a hybrid, multi-cloud compute solution.
Let's parse that:
- Hybrid: This is a solution where an enterprise has a private cloud or on-premise data center, in addition to using one of the public cloud providers (such as AWS, GCP or Azure). Any firm migrating to the cloud is going to have to run a hybrid setup, at least during the migration
- Multi-cloud: This refers to the use of more than 1 cloud provider. Why is this so important? Well, because most large firms are unwilling to be completely locked into one provider, particularly after events like Amazon's acquisition of Whole Foods (that gave pause to a whole lot of potential AWS customers, who decided that 'multi-cloud' makes sense for strategic reasons)
- Only straightforward way: Most cloud providers offer a range of compute solutions, ranging from PaaS (Elastic Beanstalk, or Google App Engine) to IaaS (EC2, or Google Compute Engine VMs). The reality is that PaaS ties you down to 1 cloud provider, and IaaS is a lot of hassle, during migration and beyond.
- Kubernetes is supported by each of the Big-3: GCP has a special relationship with Kubernetes (since K8S originated at Google) but now AWS and Azure support it as well. Kubernetes has won the battle of the container orchestration systems.
This is why containers running on Kubernetes constitute the hottest compute choice for a hybrid, multi-cloud world.
Here is now is what this course contains:
- Docker, Kubernetes and the cloud platforms: understanding the inter-relationships
- Pods and containers: Pods are the basic building block in K8S; each pod holds one or more containers that are tightly-coupled to each other
- ReplicaSets: Higher-level abstractions that provide scaling and auto-healing (they encapsulate pods, and bring new pods back up if the old ones crash)
- Deployments: Even higher-level abstractions that provide versioning, fast rollback, rolling updates and more
- Services: Front-end abstractions (think of them as similar to load-balancers) that are loosely coupled with backend pods. Services provide a static, stable network frontend IP, as well as load-balancing
- Other K8S objects: StatefulSets, Secrets, ConfigMaps, Jobs and CronJobs and more
- CKA test tips: We don't reveal any information about the test that we should not, such as specific questions. But we do discuss the test format, what to expect, pitfalls to avoid, and strategies for success
Hope you enjoy the course!
Course Content
- 14 section(s)
- 132 lecture(s)
- Section 1 Introduction
- Section 2 Getting Started With Kubernetes
- Section 3 Kubernetes and the Cloud Ecosystem
- Section 4 Pods
- Section 5 Volumes and Storage
- Section 6 More on Pods and Containers
- Section 7 ReplicaSets
- Section 8 ReplicationControllers
- Section 9 Deployments
- Section 10 Other Controllers
- Section 11 Services
- Section 12 Kubernetes on AWS and Azure
- Section 13 kubeadm: Bootstrapping a Kubernetes Cluster on Ubuntu
- Section 14 The CNCF Certified Kubernetes Administrator Test
What You’ll Learn
- Improve their odds of succeeding at the CNCF Certified Kubernetes Administrator test, Build and administer Kubernetes clusters - on-premise, as well as on all major cloud platforms (AWS, Azure, GCP), Understand and employ advanced deployment solutions using Kubernetes, Master the important aspects of Kubernetes - pods, replicasets, deployments and services
Skills covered in this course
Reviews
-
SSalifu Darboe
Great theoretical knowledge demonstrated by the lecturer along with practical demonstrations. However the quiz at end of modules seem fairly easy to answer and the fact that CKA exam has troubleshooting tasks involved, it would be useful if this was incorporated into course.
-
SSanthosh Bhatti
I Think little bit of more hands on examples on services and scenarios would have helped.But overall great course . The code concepts are driven home nicely.
-
AAnonymized User
Course is little outdated but caters to the concepts well. It would be better if the course is updated with sections on Persistent Storage and PVCs
-
RRick Evans
Study this: https://www.youtube.com/watch?v=sK5i-N34im8 ; especially the part starting 41:07 where he shows how to create a container from scratch using the command line. Stop presenting the Docker Engine as a runtime layer between the containers and the OS. The Docker Engine is more akin to a node-specific control plane, it is NOT like the JVM. In the last video you start by reviewing the tips for the CKAD exam, not the CKA exam. At about 01:50 you even mention your surprise at what a small percentage of the exam covers Services.