Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
21 views
Kubernetes
Uploaded by
Ismail Mabrouki
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save kubernetes For Later
Download
Save
Save kubernetes For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
21 views
Kubernetes
Uploaded by
Ismail Mabrouki
AI-enhanced title
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save kubernetes For Later
Carousel Previous
Carousel Next
Save
Save kubernetes For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 3
Search
Fullscreen
sov0s2029 23:28, Skills Network Glossary: Kubernetes Basics Term Automated bin packing Batch execution Cloud Controller Manager Cluster Container Orchestration Container Runtime Control Loop Control plane Controller Data (Worker) Plane DaemonSet Declarative Management Deployment Designed for extensibility Docker Swarm Ecosystem eted Eviction Imperative commands about blank aboutblank Definition Increases resource utilization and cost savings using a mix of critical and best-effort workloads. Manages batch and continuous integration workloads and automatically replaces failed containers, if configured. ‘A Kubernetes control plane component that embeds cloud-specific control logic. The cloud controller manager lets you link your cluster into your cloud provider's API, and separates out the components that interact with that cloud platform from components that only interact with your cluster. Asset of worker machines, called nodes, that run containerized applications. Every cluster has at least one worker node. Container orchestration is a process that automates the container lifecycle of containerized applications. ‘The container runtime is the software that is responsible for running containers A non-terminating loop that regulates the state of a system. A thermostat is an example of a control loop. ‘The container orchestration layer that exposes the API and interfaces to define, deploy, and manage the lifecycle of containers. In Kubernetes, controllers are control loops that watch the state of your cluster, then make or request changes where needed. Each controller tries to move the current cluster state closer to the desired state. The layer that provides capacity such as CPU, memory, network, and storage so that the containers can run and connect to a network. Ensures a copy of a Pod is running across a set of nodes in a cluster. A desired state that can be expressed (for example, the number of replicas of a specific application),and Kubernetes will actively work to ensure that the observed state matches the desired state ‘An object that provides updates for both Pods and ReplicaSets. Deployments run multiple replicas of an application by creating ReplicaSets and offering additional management capabilities on top of those ReplicaSets. In addition, deployments are suitable for stateless applications. ‘Adds features to your cluster without adding or modifying source code. automates the deployment of containerized applications but was designed specifically to work with Docker Engine and other Docker tools making it a popular choice for teams already working in Docker environments. A composition of services, support and tools that are widely available, The Kubemetes ecosystem is a large, rapidly growing ecosystem where its services, support, and tools are widely available. Anighly available key value store that contains all the cluster data, For any deployment, the deployment configuration is stored in eted, It is the source of truth for the state in a Kubernetes cluster, and the system works to bring the cluster state into line with what is stored in eted. Process of terminating one or more Pods on Nodes. Create, update, and delete live objects directly. 18‘o1oa2029 23:28 Imperative Management Ingress IPy4/IPv6 dual stack Job Kubectl Kubelet Kubernetes Kubernetes API Kubernetes API Server Kubernetes Controller Manager Kubernetes Cloud Controller Manager Kubernetes Proxy kube-scheduler Label Selector Labels Load balancing Marathon Namespace Node about blank aboutblank Defining steps and actions to get to a desired state An API object that manages external access to the services in a cluster, typically HT Assigns both IPv4 and IPv6 addresses to Pods and Services. A finite or batch task that runs to completion Also known as kubectl Command line tool for communicating with a Kubernetes cluster’s control plane, using the Kubernetes API. The kubelet is the primary "node agent" that runs on each node, The kubelet takes a set of PodSpecs (a YAML or JSON object that describes a pod) provided primarily through the apiserver and ensures that the containers described in those PodSpecs are running and healthy. The kubelet doesn't manage containers which were not created by Kubernetes. is the de facto open-source platform standard for container orchestration. It ‘was developed by Google and is maintained by the Cloud Native Computing Foundation (CNCF). Kubernetes automates container ‘management tasks, like deployment, storage provisioning, load balancing and scaling, service discovery, and fixing failed containers. Its open-source toolset and wide array of functionalities are very attractive to leading cloud providers, who both support it, and in some cases, also offer fully managed Kubemetes services. The application that serves Kubemnetes functionality through a RESTful interface and stores the state of the cluster. The Kubernetes API server validates and configures data for the api objects which include pods, services, replication controllers, and others, The APT Server services REST operations and provides the frontend to the cluster's shared state through which all other components interact. Runs all the controller processes that monitor the cluster state and ensures that the actual state of a cluster matches the desired state. Examples of controllers that ship with Kubernetes are the replication controller, endpoints controller, namespace controller, and service accounts controller. A Kubernetes control plane component that embeds cloud-specific control logic. The cloud controller manager lets you link your cluster into your cloud provider's API, and separates out the components that interact with that cloud platform from components that only interact with your cluster A network proxy that runs on each node in a cluster. This proxy maintains network rules that allow communication to Pods running on nodes—in other words, communication to workloads running on the cluster. The user must create a service with the apiserver API to configure the proxy. Control plane component that watches for newly created Pods with no assigned node, and selects a node for them to run on. Allows users to filter a list of resources based on labels, ‘Tags objects with identifying attributes that are meaningful and relevant to users, Balances traffic across Pods for better performance and high availability is an Apache Mesos framework. Apache Mesos is an open-source cluster ‘manager developed by UC Berkeley. It lets users scale container infrastructure through the automaton of most management and monitoring tasks, An abstraction used by Kubemetes to support isolation of groups of resources within a single cluster. ‘The worker machine in a Kubernetes cluster. User applications are run on nodes. Nodes can be virtual or physical machines, Each node is managed by the control plane and is able to run Pods 28sov0s2029 23:28, Nomad Object Persistence Preemption Self-healing Service Service Discovery StatefulSet Storage Storage Orchestration Pod Proxy ReplicaSet Workload aboutblank (Hashicorp) is a free and open-source cluster management and scheduling tool that supports Docker and other applications on all major operating systems across all infrastructure, whether on-premises or in the cloud. This flexibility lets teams work with any type and level of workload. An entity in the Kubernetes system. The Kubemetes API uses these entities to represent the state of your cluster. Ensures that an object exists in the system, until the object is modified or removed. Logic in Kubernetes helps a pending Pod to find a suitable Node by evicting low priority Pods existing on that Node. Restarts, replaces, reschedules, and kills failing or unresponsive containers. ‘An abstract way to expose an application running on a set of Pods as a network service Discovers Pods using their IP addresses or a single DNS name. Manages the deployment and scaling of a set of Pods, and provides ‘guarantees about the ordering and uniqueness of these Pods. ‘A data store that supports persistent and temporary storage for Pods. Automatically mounts your chosen storage system whether from local storage, network storage, or public cloud. The smallest and simplest Kubernetes object. Represents a process running in a cluster; it also represents a single instance of an application running in a cluster. Usually, a Pod wraps a single container but, in some cases encapsulates multiple tightly coupled containers that share resources. In computing, a proxy is a server that acts as an intermediary for a remote service. A ReplicaSet (aims to) maintain a set of replica Pods running at any given time. ‘A workload is an application running on Kubemnetes. © IBM Corporation 2022. All rights reserved. about blank 38
You might also like
The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life
From Everand
The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life
Mark Manson
4/5 (6132)
Principles: Life and Work
From Everand
Principles: Life and Work
Ray Dalio
4/5 (627)
The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are
From Everand
The Gifts of Imperfection: Let Go of Who You Think You're Supposed to Be and Embrace Who You Are
Brene Brown
4/5 (1148)
Never Split the Difference: Negotiating As If Your Life Depended On It
From Everand
Never Split the Difference: Negotiating As If Your Life Depended On It
Chris Voss
4.5/5 (935)
The Glass Castle: A Memoir
From Everand
The Glass Castle: A Memoir
Jeannette Walls
4/5 (8215)
Grit: The Power of Passion and Perseverance
From Everand
Grit: The Power of Passion and Perseverance
Angela Duckworth
4/5 (631)
Sing, Unburied, Sing: A Novel
From Everand
Sing, Unburied, Sing: A Novel
Jesmyn Ward
4/5 (1253)
The Perks of Being a Wallflower
From Everand
The Perks of Being a Wallflower
Stephen Chbosky
4/5 (8365)
Shoe Dog: A Memoir by the Creator of Nike
From Everand
Shoe Dog: A Memoir by the Creator of Nike
Phil Knight
4.5/5 (860)
Her Body and Other Parties: Stories
From Everand
Her Body and Other Parties: Stories
Carmen Maria Machado
4/5 (877)
The Hard Thing About Hard Things: Building a Business When There Are No Easy Answers
From Everand
The Hard Thing About Hard Things: Building a Business When There Are No Easy Answers
Ben Horowitz
4.5/5 (361)
Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race
From Everand
Hidden Figures: The American Dream and the Untold Story of the Black Women Mathematicians Who Helped Win the Space Race
Margot Lee Shetterly
4/5 (954)
Steve Jobs
From Everand
Steve Jobs
Walter Isaacson
4/5 (2923)
Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future
From Everand
Elon Musk: Tesla, SpaceX, and the Quest for a Fantastic Future
Ashlee Vance
4.5/5 (484)
The Emperor of All Maladies: A Biography of Cancer
From Everand
The Emperor of All Maladies: A Biography of Cancer
Siddhartha Mukherjee
4.5/5 (277)
A Man Called Ove: A Novel
From Everand
A Man Called Ove: A Novel
Fredrik Backman
4.5/5 (4972)
Angela's Ashes: A Memoir
From Everand
Angela's Ashes: A Memoir
Frank McCourt
4.5/5 (444)
Brooklyn: A Novel
From Everand
Brooklyn: A Novel
Colm Toibin
3.5/5 (2061)
The Art of Racing in the Rain: A Novel
From Everand
The Art of Racing in the Rain: A Novel
Garth Stein
4/5 (4281)
The Yellow House: A Memoir (2019 National Book Award Winner)
From Everand
The Yellow House: A Memoir (2019 National Book Award Winner)
Sarah M. Broom
4/5 (100)
The Little Book of Hygge: Danish Secrets to Happy Living
From Everand
The Little Book of Hygge: Danish Secrets to Happy Living
Meik Wiking
3.5/5 (447)
Yes Please
From Everand
Yes Please
Amy Poehler
4/5 (1987)
The World Is Flat 3.0: A Brief History of the Twenty-first Century
From Everand
The World Is Flat 3.0: A Brief History of the Twenty-first Century
Thomas L. Friedman
3.5/5 (2283)
Devil in the Grove: Thurgood Marshall, the Groveland Boys, and the Dawn of a New America
From Everand
Devil in the Grove: Thurgood Marshall, the Groveland Boys, and the Dawn of a New America
Gilbert King
4.5/5 (278)
Bad Feminist: Essays
From Everand
Bad Feminist: Essays
Roxane Gay
4/5 (1068)
The Woman in Cabin 10
From Everand
The Woman in Cabin 10
Ruth Ware
3.5/5 (2641)
The Outsider: A Novel
From Everand
The Outsider: A Novel
Stephen King
4/5 (1993)
A Tree Grows in Brooklyn
From Everand
A Tree Grows in Brooklyn
Betty Smith
4.5/5 (1936)
The Sympathizer: A Novel (Pulitzer Prize for Fiction)
From Everand
The Sympathizer: A Novel (Pulitzer Prize for Fiction)
Viet Thanh Nguyen
4.5/5 (125)
A Heartbreaking Work Of Staggering Genius: A Memoir Based on a True Story
From Everand
A Heartbreaking Work Of Staggering Genius: A Memoir Based on a True Story
Dave Eggers
3.5/5 (692)
Team of Rivals: The Political Genius of Abraham Lincoln
From Everand
Team of Rivals: The Political Genius of Abraham Lincoln
Doris Kearns Goodwin
4.5/5 (1912)
Wolf Hall: A Novel
From Everand
Wolf Hall: A Novel
Hilary Mantel
4/5 (4074)
On Fire: The (Burning) Case for a Green New Deal
From Everand
On Fire: The (Burning) Case for a Green New Deal
Naomi Klein
4/5 (75)
Fear: Trump in the White House
From Everand
Fear: Trump in the White House
Bob Woodward
3.5/5 (830)
Manhattan Beach: A Novel
From Everand
Manhattan Beach: A Novel
Jennifer Egan
3.5/5 (901)
Rise of ISIS: A Threat We Can't Ignore
From Everand
Rise of ISIS: A Threat We Can't Ignore
Jay Sekulow
3.5/5 (143)
John Adams
From Everand
John Adams
David McCullough
4.5/5 (2544)
The Light Between Oceans: A Novel
From Everand
The Light Between Oceans: A Novel
M L Stedman
4.5/5 (790)
The Unwinding: An Inner History of the New America
From Everand
The Unwinding: An Inner History of the New America
George Packer
4/5 (45)
Little Women
From Everand
Little Women
Louisa May Alcott
4/5 (105)
The Constant Gardener: A Novel
From Everand
The Constant Gardener: A Novel
John le Carré
3.5/5 (109)