question |
réponse |
Kubernetes is an open-source platform for automating deployment, scaling, and management of containerized applications. commencer à apprendre
|
|
Kubernetes to platforma open-source do automatyzacji wdrażania, skalowania i zarządzania aplikacjami kontenerowymi.
|
|
|
A Pod is the smallest deployable unit in Kubernetes. commencer à apprendre
|
|
Pod to najmniejsza jednostka wdrożeniowa w Kubernetesie.
|
|
|
A Node is a worker machine in Kubernetes, which can be a VM or a physical machine. commencer à apprendre
|
|
Node to maszyna robocza w Kubernetesie – może to być maszyna wirtualna lub fizyczna.
|
|
|
The Master Node manages the cluster and runs the control plane components. commencer à apprendre
|
|
Node master zarządza klastrem i uruchamia komponenty płaszczyzny kontrolnej.
|
|
|
A Deployment is used to manage stateless applications. commencer à apprendre
|
|
Deployment służy do zarządzania aplikacjami bezstanowymi.
|
|
|
A StatefulSet is used to manage stateful applications with stable identities and storage. commencer à apprendre
|
|
StatefulSet służy do zarządzania aplikacjami stanowymi z trwałą tożsamością i pamięcią.
|
|
|
A Service in Kubernetes provides a stable endpoint to access Pods. commencer à apprendre
|
|
Service w Kubernetesie zapewnia stabilny punkt dostępu do Podów.
|
|
|
A ConfigMap is used to store non-sensitive configuration data. commencer à apprendre
|
|
ConfigMap służy do przechowywania niesensytywnych danych konfiguracyjnych.
|
|
|
A Secret is used to store sensitive data like passwords or tokens. commencer à apprendre
|
|
Secret służy do przechowywania wrażliwych danych, takich jak hasła lub tokeny.
|
|
|
Kubelet is the primary "node agent" that runs on each node. commencer à apprendre
|
|
Kubelet to główny „agent węzła” działający na każdym nodzie.
|
|
|
The `kubectl` command-line tool is used to interact with the Kubernetes cluster. commencer à apprendre
|
|
Polecenie `kubectl` służy do interakcji z klastrem Kubernetes.
|
|
|
Namespaces are used to divide cluster resources between multiple users or applications. commencer à apprendre
|
|
Namespace'y służą do podziału zasobów klastra między użytkowników lub aplikacje.
|
|
|
A ReplicaSet ensures a specified number of identical Pods are running at all times. commencer à apprendre
|
|
ReplicaSet zapewnia, że określona liczba identycznych Podów działa cały czas.
|
|
|
Horizontal Pod Autoscaler automatically scales Pods based on CPU or custom metrics. commencer à apprendre
|
|
Horizontal Pod Autoscaler automatycznie skaluje Pody na podstawie CPU lub innych metryk.
|
|
|
The API Server is the front-end of the Kubernetes control plane. commencer à apprendre
|
|
API Server to interfejs front-end płaszczyzny kontrolnej Kubernetes.
|
|
|
etcd is a consistent and highly available key-value store used for all cluster data. commencer à apprendre
|
|
etcd to spójny i wysoce dostępny magazyn klucz-wartość dla danych klastra.
|
|
|
The Controller Manager runs background threads that regulate the cluster state. commencer à apprendre
|
|
Controller Manager uruchamia procesy w tle, które regulują stan klastra.
|
|
|
The Scheduler assigns Pods to Nodes based on resource availability. commencer à apprendre
|
|
Scheduler przypisuje Pody do Node'ów na podstawie dostępnych zasobów.
|
|
|
A DaemonSet ensures a copy of a Pod runs on all (or selected) nodes. commencer à apprendre
|
|
DaemonSet zapewnia, że kopia Podu działa na wszystkich (lub wybranych) nodach.
|
|
|
A Job creates Pods that run to completion and then terminate. commencer à apprendre
|
|
Job tworzy Pody, które działają do zakończenia zadania, a potem się kończą.
|
|
|
A CronJob runs Jobs on a scheduled time, like a cron task. commencer à apprendre
|
|
CronJob uruchamia Joby zgodnie z harmonogramem, jak zadanie cron.
|
|
|
Taints and Tolerations control how Pods are scheduled to Nodes. commencer à apprendre
|
|
Tainty i tolerancje kontrolują, jak Pody są przypisywane do Node'ów.
|
|
|
Affinity rules help control which Pods run together on the same or different nodes. commencer à apprendre
|
|
Reguły Affinity pomagają kontrolować, które Pody działają razem lub osobno na nodach.
|
|
|
The ClusterIP service type exposes the service on an internal IP within the cluster. commencer à apprendre
|
|
Typ usługi ClusterIP udostępnia usługę pod wewnętrznym adresem IP w klastrze.
|
|
|
The NodePort service type exposes the service on a static port on each node's IP. commencer à apprendre
|
|
Typ usługi NodePort udostępnia usługę na statycznym porcie na każdym IP węzła.
|
|
|
The LoadBalancer service type exposes the service externally using a cloud provider's load balancer. commencer à apprendre
|
|
Typ usługi LoadBalancer udostępnia usługę na zewnątrz za pomocą load balancera dostawcy chmurowego.
|
|
|
Ingress allows HTTP and HTTPS access to services using rules and routing. commencer à apprendre
|
|
Ingress umożliwia dostęp HTTP i HTTPS do usług za pomocą reguł i routingu.
|
|
|
A PersistentVolume (PV) represents a piece of storage in the cluster. commencer à apprendre
|
|
PersistentVolume (PV) reprezentuje kawałek pamięci w klastrze.
|
|
|
A PersistentVolumeClaim (PVC) is a request for storage by a user. commencer à apprendre
|
|
PersistentVolumeClaim (PVC) to żądanie przestrzeni dyskowej przez użytkownika.
|
|
|
RBAC (Role-Based Access Control) is used to manage permissions within a Kubernetes cluster. commencer à apprendre
|
|
RBAC (Role-Based Access Control) służy do zarządzania uprawnieniami w klastrze Kubernetes.
|
|
|