Kubernetes Interview Questions | Kubernetes Interview Questions and Answers | Kubernetes DevOps | 05

  Рет қаралды 12,656

LogicOps Lab

LogicOps Lab

Жыл бұрын

Kubernetes Interview Questions | Kubernetes Interview Questions and Answers | Kubernetes DevOps
Hey Folks,
Welcome back to another video in the series of DevOps Interviews. This is the 19th video in this series. This is a complete 28-minute-long technical video purely on #kubernetes #devops #devopsinterview etc. Pick a pen and paper, and note down the questions we have covered in this video.
LogicOps Lab - / @logicopslab
LogicOps Lab - Hindi - / @logicopslabhindi
GitHub - bit.ly/3lsUjdE
Twitter - ​ / logicopslab
Instagram - bit.ly/3tJ9Jyf
Facebook - bit.ly/3ziMoVq
Like | Share | Subscribe | Follow
Music Credits:
Link - uppbeat.io/t/soundroll/fashio...
YT - • No Copyright Music Bac...
Name - Soundroll - Fashion Worship
kubernetes interview questions,kubernetes interview questions and answers,kubernetes interview questions for experienced,kubernetes interview questions for freshers,kubernetes devops,kubernetes tutorial,kubernetes devopsschool,what is kubernetes,kubernetes devops guy,devops kubernetes,devops kubernetes interview questions,devops kubernetes project,kubernetes interview questions hindi,k8s interview questions,k8s interview questions and answers

Пікірлер: 61
@bikumillan697
@bikumillan697 Жыл бұрын
Most of the questions are just defination .....I was expecting questions more on real-time issue in Kubernetes ...well last 9 min questions are really good
@prerna4497
@prerna4497 Жыл бұрын
Thanks for creating these videos! It really help to get an idea about interview questions.
@LogicOpsLab
@LogicOpsLab Жыл бұрын
Glad it was helpful!
@user-wv2hk6dg2h
@user-wv2hk6dg2h Жыл бұрын
it is really awesome how you explain complicated things in a simple way
@LogicOpsLab
@LogicOpsLab Жыл бұрын
Means a lot 🙏🏻
@suryakantsamal2495
@suryakantsamal2495 Жыл бұрын
It will be great if you can come with some more scenario-based questions 🙂. Thank you for all the efforts you are putting to help people.
@LogicOpsLab
@LogicOpsLab Жыл бұрын
Sure, will announce a dedicated series on this.
@nehagahilot1517
@nehagahilot1517 Жыл бұрын
Whoaaaa!! How come I didn't find this interview before, amazingggg!! 🤯🤯
@LogicOpsLab
@LogicOpsLab Жыл бұрын
Glad you liked it!
@sagarahire-ys3uj
@sagarahire-ys3uj Жыл бұрын
I hope lot more are coming...thanks for doing this
@LogicOpsLab
@LogicOpsLab Жыл бұрын
Yes, working on it.
@mayurmadan7956
@mayurmadan7956 Жыл бұрын
hey ravish ,we really apricate for your effort, you are doing a great job which is really help people like me, who is trying to switch from Non-IT to IT .My request is please make a series on Python for Devops because i am not finding any relevant topic on free platform to refer or whatever is available its out of box for non IT background people like me.
@LogicOpsLab
@LogicOpsLab Жыл бұрын
There are already two courses on my channel 1) Python interview questions for DevOps kzbin.info/www/bejne/apfIlHhvbdWIgpI 2) Python for Beginners kzbin.info/www/bejne/eXe5e4Ksd8d9nMk
@mayurmadan7956
@mayurmadan7956 Жыл бұрын
@@LogicOpsLab thank you but is it sufficient for fresher who want to switch in devops .
@LogicOpsLab
@LogicOpsLab Жыл бұрын
@@mayurmadan7956 Indeed. For Python, yes!
@rubymaria04
@rubymaria04 Жыл бұрын
U r doing superb job for devops jobseekers 🎉❤😊😅
@LogicOpsLab
@LogicOpsLab Жыл бұрын
Appreciate your support 🙏🏻🙏🏻
@tejasmahakalkar4779
@tejasmahakalkar4779 Жыл бұрын
How to answer the question like how to move from monolithic to microservice and containerised the application?
@srinu9054
@srinu9054 Жыл бұрын
Thank YOU
@LogicOpsLab
@LogicOpsLab Жыл бұрын
Welcome!
@imharry404
@imharry404 Жыл бұрын
Great😊😊
@LogicOpsLab
@LogicOpsLab Жыл бұрын
Thanks, Hariom.
@Alpha-kt6hc
@Alpha-kt6hc 11 ай бұрын
I think "servicemesh" was the one word answer for how does kubernetes helps with microservice architecture. And Loadblancer IP and External IP are completely different concepts, External IP is a service and Loadbalancer IP is an IP address that keeps on changing usually.
@LogicOpsLab
@LogicOpsLab 7 ай бұрын
On the context of "how does kubernetes helps with microservice architecture." The answer can be multifold, it depends how a person is explaining it. Here's how Kubernetes helps with microservice architecture: Containerization: Kubernetes is built around containers, which are an ideal packaging format for microservices. Containers package the application and its dependencies into a single unit, making it easy to deploy and manage microservices independently. Scaling: Kubernetes enables automatic scaling of microservices. You can define scaling rules and policies for individual microservices based on factors like CPU utilization, memory usage, or custom metrics. This ensures that your microservices can handle varying workloads efficiently. Service Discovery and Load Balancing: Kubernetes provides built-in service discovery and load balancing. Microservices can communicate with each other using service names, and Kubernetes takes care of routing traffic to the appropriate instances. This simplifies communication between microservices. Resource Isolation: Kubernetes enforces resource isolation and resource quotas. Each microservice can be allocated specific CPU and memory resources, ensuring that one service does not adversely affect others. Now, this is not the complete list, there can be several other aspects, as well..
@sivaboorla6843
@sivaboorla6843 8 ай бұрын
Could you give me clarity in kubernetes that we have a single master node. The node is automatically terminated then is there any possibility to get back using ETCD.
@LogicOpsLab
@LogicOpsLab 8 ай бұрын
Here's a simplified overview of the recovery process: Detection: When the master node becomes unavailable, whether due to a crash or other reasons, the Kubernetes nodes and other components in the cluster will detect the loss of connectivity to the control plane. Failover: Kubernetes has a mechanism called "leader election" that allows other nodes to elect a new master from the available nodes. This process is often managed by tools like kube-controller-manager and kube-scheduler. A new master node will be elected, and control plane services will be rescheduled on this new master. Etcd Recovery: The etcd cluster may also need to recover if the etcd nodes on the failed master were part of the etcd cluster. Etcd is designed for high availability and can handle failures, but the recovery process may take some time. If the etcd cluster suffered a quorum loss (e.g., losing the majority of its nodes), you may need to intervene manually to restore the quorum. Cluster Stability: Once a new master is elected and etcd is stable again, the Kubernetes cluster will regain its stability, and you can resume managing and deploying applications in the cluster. It's important to note that the specific steps and configurations for recovery may vary depending on your Kubernetes setup, including the choice of networking, cloud provider, and other infrastructure components.
@sagarahire-ys3uj
@sagarahire-ys3uj 7 ай бұрын
i think for FB question..federated cluster will make more much sense there having a set of similar microservices (domain wise or relatability) they might run on one single cluster and likewise we'll have lot of clusters also this microservices will also have their replicas running and we can concept like Node affinity
@LogicOpsLab
@LogicOpsLab 7 ай бұрын
Can you please help me with the timestamp?
@sagarahire-ys3uj
@sagarahire-ys3uj 7 ай бұрын
@@LogicOpsLab FB question came on 20:40 but m not able to track for federated cluster
@sumitagrawal79
@sumitagrawal79 Жыл бұрын
For some questions, the candidate is actually typing the question on google in run time and he is smart enough to buy some time to get the answers....
@LogicOpsLab
@LogicOpsLab Жыл бұрын
Could be possible, people are getting smarter these days.
@xylyx_
@xylyx_ Жыл бұрын
Wonder how did he clear CKA!
@LogicOpsLab
@LogicOpsLab Жыл бұрын
Good question.
@SumitKumar-uq3dg
@SumitKumar-uq3dg Жыл бұрын
Ha ha. I also felt he was simply telling anything. Many places he wasnt even clear
@akashshrivastav4658
@akashshrivastav4658 8 ай бұрын
Agree 💯 , even I feel more knowledgeable without CKA certification😅😅 , the way he's answering I am afraid 😅
@Portnacelle
@Portnacelle Жыл бұрын
Man I can hardly understand the candidate...I tried with captions and the captions engine is just as confused :(
@LogicOpsLab
@LogicOpsLab Жыл бұрын
Don't worry, you aren't losing out on much. He is not answering properly, plus most of his answers did not make sense.
@sabapathan8018
@sabapathan8018 Жыл бұрын
@@LogicOpsLab yes, could you please make videos on the same interview which will answer properly for us
@LogicOpsLab
@LogicOpsLab Жыл бұрын
@@sabapathan8018 Yes, started a separate series for the same.
@neerajkumar81
@neerajkumar81 Жыл бұрын
@@LogicOpsLab > plus most of his answers did not make sense. I understand his English was not very clear, but his answers were satisfactory. I found that he had knowledge of everything that you asked..it's just that he couldn't frame his answers properly.
@LogicOpsLab
@LogicOpsLab Жыл бұрын
@@neerajkumar81 The stakes were high for this position.
@Alpha-kt6hc
@Alpha-kt6hc Жыл бұрын
If the guy has cleared CKA then why did you ask him questions like: Do you know what etcd is? He obviously knows that much, probably knows etcdl commands too.
@NewLearningEveryday
@NewLearningEveryday Жыл бұрын
Trained hirer here. Have you ever heard about proxy certifications? In order to find out if the candidate is real or not we always start with basic ones and then increase the difficulty level. I think he's doing just fine. Also, he had put 32 videos here before some dumbass girl threatened his job. This used to be one stop solution for junior to mid senior level interviews. Gone are the days. 😢😢
@LogicOpsLab
@LogicOpsLab 11 ай бұрын
Thanks for the feedback.
@subhasismandal4180
@subhasismandal4180 Жыл бұрын
The candidate is not explaining properly in simpler terms , it's difficult to understand for the interviewer also i think to understand
@LogicOpsLab
@LogicOpsLab Жыл бұрын
True. He was rejected, and wasn't able to clear the interview.
@subhasismandal4180
@subhasismandal4180 Жыл бұрын
@@LogicOpsLab can you please guide me, I am 1 years of exp. and have hands on exp on aws eks with both node as a service and fargate as a service (serverless), api gateway,lambda ,R53 and various Aws services, have done linux configurations inside ec2 and have self learned on docker and k8s and know a bit of shell scripting also , I want to switch from this job because i am not getting challenging work and brainstorming projects
@kirankadavergu6145
@kirankadavergu6145 Жыл бұрын
better to keep only questions, delete answers. I am forgetting what I learnt till date by listening his answers 😅
@LogicOpsLab
@LogicOpsLab 11 ай бұрын
Hi, Kiran. Please comment down the correct answers as feedback. This will help other folks, as well.
@pradipgudale2000
@pradipgudale2000 Жыл бұрын
Candidate dont have much experience in kubernet, he is not giving straight forward answer, rather he is creating story and cover the answers.
@LogicOpsLab
@LogicOpsLab Жыл бұрын
Thanks for the feedback
@rohanekar
@rohanekar Жыл бұрын
Banda select hua ka ?
@LogicOpsLab
@LogicOpsLab Жыл бұрын
What do you think?
@swapnilsingh7170
@swapnilsingh7170 Ай бұрын
Even the English translation failed to get his answers 😭
@LogicOpsLab
@LogicOpsLab Ай бұрын
At a few places, yes.
@kirankadavergu6145
@kirankadavergu6145 Жыл бұрын
Simply he told nonsense for the question how the docker and Kubernetes related😂 listen with 0.75x speed you can listen some stuff
@LogicOpsLab
@LogicOpsLab 11 ай бұрын
Hi, Kiran. Please comment down the correct answers as feedback. This will help other folks, as well.
@jaydaemon_con1574
@jaydaemon_con1574 4 ай бұрын
I can’t understand the guys English
@LogicOpsLab
@LogicOpsLab 4 ай бұрын
Please switch on the subtitles
когда одна дома // EVA mash
00:51
EVA mash
Рет қаралды 12 МЛН
Маленькая и средняя фанта
00:56
Multi DO Smile Russian
Рет қаралды 3,4 МЛН
Stupid man 👨😂
00:20
Nadir Show
Рет қаралды 28 МЛН
Is Learning Kubernetes Enough To Get Cloud Jobs?
6:53
Cloud With Raj
Рет қаралды 12 М.
когда одна дома // EVA mash
00:51
EVA mash
Рет қаралды 12 МЛН