Liveness Probe explained with yaml #kubernetes
Key Takeaways
This video teaches how to use yaml for Liveness Probe in Kubernetes
Full Transcript
Liveness probe in Kubernetes is used to check if a container is still running properly. If the probe fails continuously, Kubernetes kills the container and restarts it according to the pod's restart policy. This is useful when a container is alive but stuck or unresponsive. There are three types of livveness probes. One, HTTP sends an HTTP request to a specified endpoint. Two, TCP tries to open a TCP connection on a port. Three, exec runs a command inside the container. Key parameters of livveness probe includes initial delay seconds, which means wait time before the first check. Period seconds, which means how often to check, failure threshold, which means how many failures before restarting. Here's an example. This probe checks /halth every 10 seconds after a 5-second delay. If it fails too many times, the container restarts.
Watch on YouTube ↗
(saves to browser)
Sign in to unlock AI tutor explanation · ⚡30
Playlist
Playlist UUp-7QbSD2_43U9rEiacvrkw · GetDevOpsReady · 16 of 49
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
▶
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
VPC vs Subnet | Cloud Networking #aws
GetDevOpsReady
What is Retrieval Augmented Generation (RAG) ? Simplified Explanation
GetDevOpsReady
Python Practice Day 1 - Variables & Simple Data types | Beginner Python Excercises
GetDevOpsReady
What is an FQDN? (Fully Qualified Domain Name) Explained under 60 Seconds!
GetDevOpsReady
Deepseek: The AI That Shook the World – DeepSeek R1 vs ChatGPT, Gemini & Llama
GetDevOpsReady
Deepseek AI - The free AI that beats ChatGPT! #ai
GetDevOpsReady
Lambda functions in Python with example
GetDevOpsReady
Python Operator Overloading Explained | Make custom operators in python #shorts
GetDevOpsReady
Decorators in Python Explained with examples and usecases
GetDevOpsReady
What is Swap Memory in Linux? | Explained with Simple Analogy
GetDevOpsReady
Docker vs kubernetes | Whats the difference
GetDevOpsReady
Container Management | Why kubernetes is required #kubernetes
GetDevOpsReady
kubernetes Liveness Probe explained with YAML example
GetDevOpsReady
Readiness Probe in Kubernetes | Explained with yaml
GetDevOpsReady
Shell Scripting Question 1 #devopsinterview
GetDevOpsReady
Liveness Probe explained with yaml #kubernetes
GetDevOpsReady
Git Interview Question 2 #devopsinterview
GetDevOpsReady
DevOps Engineer Task 1 #bashscripting #devops
GetDevOpsReady
DevOps Engineer Task 2 #devops #bashscripting
GetDevOpsReady
DevOps Engineer Task 3 | bash script #devops
GetDevOpsReady
DevOps Engineer Task 4 | bash Script
GetDevOpsReady
DevOps Engineer Task 5 | bash Script
GetDevOpsReady
What is Amazon EC2? | AWS EC2 Explained for Beginners in 100 Seconds
GetDevOpsReady
Linux Interview Question: 99% CPU Usage on Server | Real-Time Debug Guide in 60 Seconds
GetDevOpsReady
Amazon S3 Explained Simply | Object Storage, buckets and Real Use Cases
GetDevOpsReady
AWS interview question 1 - Prerequisites on EC2 Before Deploying Applications
GetDevOpsReady
AWS Shared Responsibility Model Explained #aws #devops
GetDevOpsReady
Prometheus Monitoring within 60 Seconds | Quick DevOps Tutorial
GetDevOpsReady
What is Git ? | Git basics explained for interviews
GetDevOpsReady
What is a Git Repository? Explained for interviews
GetDevOpsReady
How to Create a New Git Repository | Git init Explained
GetDevOpsReady
Cloud Support Engineer Role Explained | Skills, Responsibilities & Career Guide
GetDevOpsReady
Auto scaling group ASG in 120 Seconds
GetDevOpsReady
AWS Load Balancer Explained | Types of Load Balancers in AWS
GetDevOpsReady
30 Most Asked Linux Interview Questions 2025 | Linux Interview Questions with Answers
GetDevOpsReady
What is Amazon EKS ? AWS Kubernetes explained in simple terms
GetDevOpsReady
Git vs Github Explained #github
GetDevOpsReady
Git Pull vs Git Merge | DevOps interview question #devops
GetDevOpsReady
Git Clone vs Git Fork #devops #github
GetDevOpsReady
High Availability Explained Simply | HA in DevOps with Real-Life Examples
GetDevOpsReady
IP Address and DNS Explained Simply | How Users Access Applications
GetDevOpsReady
What Is a Port? | IP Address vs Port Explained Simply
GetDevOpsReady
What Is a Subnet? | Subnet Explained in Simple Words with Real-Life Example
GetDevOpsReady
Vector Database Explained Simply | Semantic Search
GetDevOpsReady
What is Agentic AI ? #devops #aiexplained
GetDevOpsReady
What happens if Linux deletes / #linux
GetDevOpsReady
NGINX Ingress is Being Deprecated?! What Kubernetes Users Must Do NOW
GetDevOpsReady
What is Sandbox Environment ? DevOps Basics
GetDevOpsReady
What is Persistent Volume in Kubernetes? Simple Explanation
GetDevOpsReady
More on: Kubernetes
View skill →Related AI Lessons
⚡
⚡
⚡
⚡
I Spent Weeks Looking for a Research Gap Before I Realized I Was Searching the Wrong Way
Medium · AI
ICMI 2026 Reviews [D]
Reddit r/MachineLearning
Workshop submission for main conference paper under review [D]
Reddit r/MachineLearning
Kept context-switching between arxiv, OpenReview, GitHub, and HuggingFace for every paper, so I built this. Chrome extension + website with everything inline, plus citation graph + SPECTER2 neighbors. 3M papers, free, feedback welcome [P]
Reddit r/MachineLearning
🎓
Tutor Explanation
DeepCamp AI