What is k8s (Kubernetes)?
k8s is a container orchestration system. It is used for container deployment and management. Its design is greatly impacted by Google’s internal system Borg.
A k8s cluster consists of a set of worker machines, called nodes, that run containerized applications. Every cluster has at least one worker node.
The worker node(s) host the Pods that are the components of the application workload. The control plane manages the worker nodes and the Pods in the cluster. In production environments, the control plane usually runs across multiple computers, and a cluster usually runs multiple nodes, providing fault tolerance and high availability.
🔹 Control Plane Components
1. API Server
The API server talks to all the components in the k8s cluster. All the operations on pods are executed by talking to the API server.
2. Scheduler
The scheduler watches pod workloads and assigns loads on newly created pods.
3. Controller Manager
The controller manager runs the controllers, including Node Controller, Job Controller, EndpointSlice Controller, and ServiceAccount Controller.
4. etcd
etcd is a key-value store used as Kubernetes' backing store for all cluster data.
🔹 Nodes
1. Pods
A pod is a group of containers and is the smallest unit that k8s administers. Pods have a single IP address applied to every container within the pod.
2. Kubelet
An agent that runs on each node in the cluster. It ensures containers are running in a Pod.
3. Kube Proxy
kube-proxy is a network proxy that runs on each node in your cluster. It routes traffic coming into a node from the service. It forwards requests for work to the correct containers.
Over to you: Do you know why Kubernetes is called “k8s”? Despite its power, K8s can be intimidating. What do you think about it?
—
Subscribe to our weekly newsletter to get a Free System Design PDF (158 pages): https://t.co/uc5M7CdXXC
10-Step Kubernetes Learning Path 👇
Learning Kubernetes can be a rewarding endeavor, but it can also be complex and overwhelming, especially for beginners.
To effectively learn Kubernetes, you should follow a structured learning path.
Here's a step-by-step guide to help you get started and become proficient with Kubernetes 👇
–
We have tailored real-world captivating content to simplify Kubernetes concepts in our courses. Check out our courses: https://t.co/D66mBEAdqI
🔁 Consider a Repost if this is useful
#kodekloud
#devops #kubernetes #cloudcomputing
ChatGPT is the easiest way to make money online.
But 99% of people don't know how to use it.
Here are 13 simple proven methods to start earning $10,000/mo with AI 👇:
Great Public APIs for your next project:
🎭 IMDB API - Movies and TV shows
🎬 YouTube Data API - Video data, statistics
📊 World Bank API - Economic data
🚦 Traffic API - Real-time traffic info
📚 Google Books API - Book metadata
🍺 BreweryDB API - Beer and brewery
🚗 VIN API - Vehicle identification numbers
🔍 Bing Web Search API - Web search
Git and GitHub mini course!
Git is difficult to understand.
But you don't need to learn everything.
Learn these 13 Git commands because you'll be using them 99% of the time:
AI is much more than ChatGPT.
4 tools that will blow your mind:
1. Text to audio
https://t.co/dpTzUcCkuM
2. Take notes directly on any website
https://t.co/WFTny49Plx
3. Automatic notes taking
https://t.co/xV3JiEAzD6
4. Generate code using AI
https://t.co/Q6T8pjbFl2
How I learned DevOps as a beginner?
✅️Programming
✅️Linux
✅️Scripting
✅️Version Control
✅️Containers
✅️Orchestration
✅️Public/Private Cloud
✅️CI/CD
✅️GITOps
✅️Infrastructure as a Code
✅️Infrastructure provision
✅️Observability/Monitoring
✅️Service mesh
✅️WASM
Most popular tech term according to years I saw as a Computer Engineer.
2016 -> Blockchain, IoT, ML
2017 -> AI, AR/VR, IoT
2018 -> ML/AI, 3D metal printing
2019 -> Data Science
2020 -> Data Science, DevOps
2021 -> DevOps, 5G, Blockchain
2022 -> Web3, Robots
2023 -> AI, MLOps
Tech World is moving so rapidly, It's difficult to cop up with everything.
If you're learner or builder - keep updated yourself to the evolving world.
The element which is trending today can be only a single memory in the future.
Try to diversify your knowledge.
Technical world is booming and it's gonna change the living.
So, Don't get stuck on small things like - ChatGPT gonna take your job.
It's bigger than this - Use tech for your evolution.
Ran Static Analysis on a FLASK web application using Sonarqube scanner and stored the vulnerability report in postgreSQL database. Now the application is free from vulnerabilities 😎
#DevSecOps#DevOps#IBM