Install a Kubernetes Cluster with Kind in 5 minutes!
This video walks you through the 8 steps you need to take to launch and verify your very own Kubernetes Cluster.
All you need is an Ubuntu VM with sudo privilege, and you are all set!
Step 1: Install Docker - 0:23
Step 2: Install Kubectl - 0:59
Step 3: Install Go - 1:30
Step 4: Install Kind - 1:53
Step 5: Update Go Path - 2:18
Step 6: Create a K8s Cluster - 2:30
Step 7: Verify K8s Cluster - 3:29
Step 8: Try Your Cluster - 3:48
Commands to run:
1. curl -fsSL https://download.docker.com/linux/ubu... | sudo apt-key add - && sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" && sudo apt-get install docker-ce -y
2. curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)..." && sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
3. wget https://golang.org/dl/go1.15.8.linux-... && sudo tar -C /usr/local -xzf go1.15.8.linux-amd64.tar.gz && export PATH=$PATH:/usr/local/go/bin
4. GO111MODULE="on" go get sigs.k8s.io/[email protected] && sudo su
5. export PATH=$PATH:/home/ubuntu/go/bin
6. kind create cluster
7. kind get clusters && kubectl cluster-info --context kind-kind
8. kubectl run mypod --image=nginx && kubectl get pods -w
For more information on installing and using kind, please visit their website: https://kind.sigs.k8s.io/
---------------------------------------------------------------------------------------------------------------------
Want to read the blog?
https://alta3.com/blog/8-steps-to-k8s...
Interested in enrolling in Kubernetes training for you or your company? CLICK HERE!
https://alta3.com/overview-kubernetes
Check out our other Ansible training videos HERE!
• Kubernetes Tutorials | CKAD Level Tra...
Follow us and Catch us at:
Website: https://alta3.com
Twitter: @Alta3Research
Facebook: / alta3research
LinkedIn: / alta3-research-inc
Alta3 Research, Inc.
https://alta3.com/
Contact Us: https://alta3.com/contact
Music by Yummie - https://freesound.org/s/410574/ - Game background Music loop
Voice of Sam Griffith
NOTE: This video is not a paid promotion for the kind product. The authors of the kind software have not asked this to be produced or granted any special permissions or licenses for us to produce this video. We simply think that kind is a pretty awesome tool for getting a Kubernetes Cluster going really fast and easily.