标准化词汇表

此术语表旨在提供 Kubernetes 术语的完整、标准列表。其中包含特定于 Kubernetes 的技术术语以及能够构造有用的语境的一般性术语。

根据标签过滤术语

.

The inner components of Kubernetes.

Related to Kubernetes open-source development.

A resource type that Kubernetes supports by default.

Supported customizations of Kubernetes.

Relevant for a first-time user of Kubernetes.

How Kubernetes components talk to each other (and to programs outside the cluster).

Starting and maintaining Kubernetes.

Keeping Kubernetes applications safe and secure.

How Kubernetes applications handle persistent data.

Software that makes Kubernetes easier or better to use.

Represents a common type of Kubernetes user.

Applications running on Kubernetes.Architecture)Community)Core Object)Extension)Fundamental)Networking)Operation)Security)Storage)Tool)User Type)Workload)全选)全不选)

点击 [+]) 下面的指示符号获取特定术语的更为完整的描述。

Admission ControllerLINK

A piece of code that intercepts requests to the Kubernetes API server prior to persistence of the object.[+])

Admission controllers are configurable for the Kubernetes API server and may be “validating”, “mutating”, orboth. Any admission controller may reject the request. Mutating controllers may modify the objects they admit;validating controllers may not.

Aggregation LayerLINK

The aggregation layer lets you install additional Kubernetes-style APIs in your cluster.[+])

When you’ve configured the Kubernetes API ServerControl plane component that serves the Kubernetes API. to support additional APIs, you can add APIService objects to “claim” a URL path in the Kubernetes API.

AnnotationLINK

A key-value pair that is used to attach arbitrary non-identifying metadata to objects.[+])

The metadata in an annotation can be small or large, structured or unstructured, and can include characters not permitted by labels. Clients such as tools and libraries can retrieve this metadata.

API GroupLINK

A set of related paths in Kubernetes API.[+])

You can enable or disable each API group by changing the configuration of your API server. You can also disable or enable paths to specific resources. API group makes it easier to extend the Kubernetes API. The API group is specified in a REST path and in the apiVersion field of a serialized object.

API serverLINK亦称作:kube-apiserverThe API server is a component of the Kubernetescontrol planeThe container orchestration layer that exposes the API and interfaces to define, deploy, and manage the lifecycle of containers. that exposes the Kubernetes API.The API server is the front end for the Kubernetes control plane.[+])

The main implementation of a Kubernetes API server is kube-apiserver.kube-apiserver is designed to scale horizontally—that is, it scales by deploying more instances.You can run several instances of kube-apiserver and balance traffic between those instances.

App ContainerLINK

Application containers (or app containers) are the containersA lightweight and portable executable image that contains software and all of its dependencies. in a podThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. that are started after any init containersOne or more initialization containers that must run to completion before any app containers run. have completed.[+])

An init container lets you separate initialization details that are important for the overallworkloadA workload is an application running on Kubernetes., and that don’t need to keep runningonce the application container has started.If a pod doesn’t have any init containers configured, all the containers in that pod are app containers.

Application ArchitectLINK

A person responsible for the high-level design of an application.[+])

An architect ensures that an app’s implementation allows it to interact with its surrounding components in a scalable, maintainable way. Surrounding components include databases, logging infrastructure, and other microservices.

Application DeveloperLINK

A person who writes an application that runs in a Kubernetes cluster.[+])

An application developer focuses on one part of an application. The scale of their focus may vary significantly in size.

ApplicationsLINKThe layer where various containerized applications run. [+])

The layer where various containerized applications run.

ApproverLINK

A person who can review and approve Kubernetes code contributions.[+])

While code review is focused on code quality and correctness, approval is focused on the holistic acceptance of a contribution. Holistic acceptance includes backwards/forwards compatibility, adhering to API and flag conventions, subtle performance and correctness issues, interactions with other parts of the system, and others. Approver status is scoped to a part of the codebase. Approvers were previously referred to as maintainers.

CertificateLINK

A cryptographically secure file used to validate access to the Kubernetes cluster.[+])

Certificates enable applications within a Kubernetes cluster to access the Kubernetes API securely. Certificates validate that clients are allowed to access the API.

cgroup (control group)LINK

A group of Linux processes with optional resource isolation, accounting and limits.[+])

cgroup is a Linux kernel feature that limits, accounts for, and isolates the resource usage (CPU, memory, disk I/O, network) for a collection of processes.

CLA (Contributor License Agreement)LINK

Terms under which a contributorSomeone who donates code, documentation, or their time to help the Kubernetes project or community. grants a license to an open source project for their contributions.[+])

CLAs help resolve legal disputes involving contributed material and intellectual property (IP).

Cloud Controller ManagerLINK

Cloud Controller Manager is an alpha feature in 1.8. In upcoming releases it will be the preferred way to integrate Kubernetes with any cloud.[+])

Kubernetes v1.6 contains a new binary called cloud-controller-manager. cloud-controller-manager is a daemon that embeds cloud-specific control loops. These cloud-specific control loops were originally in the kube-controller-manager. Since cloud providers develop and release at a different pace compared to the Kubernetes project, abstracting the provider-specific code to the cloud-controller-manager binary allows cloud vendors to evolve independently from the core Kubernetes code.

Cloud Native Computing Foundation (CNCF)LINK

The Cloud Native Computing Foundation (CNCF) builds sustainable ecosystems andfosters a community around projects thatorchestrate containers as part of a microservices architecture.

Kubernetes is a CNCF project.[+])

The CNCF is a sub-foundation of the Linux Foundation.Its mission is to make cloud native computing ubiquitous.

Cloud ProviderLINK亦称作:Cloud Service ProviderA business or other organization that offers a cloud computing platform.[+])

Cloud providers, sometimes called Cloud Service Providers (CSPs), offercloud computing platforms or services.

Many cloud providers offer managed infrastructure (also calledInfrastructure as a Service or IaaS).With managed infrastructure the cloud provider is responsible forservers, storage, and networking while you manage layers on top of thatsuch as running a Kubernetes cluster.

You can also find Kubernetes as a managed service; sometimes calledPlatform as a Service, or PaaS. With managed Kubernetes, yourcloud provider is responsible for the Kubernetes control plane as wellas the nodesA node is a worker machine in Kubernetes. and theinfrastructure they rely on: networking, storage, and possibly otherelements such as load balancers.

ClusterLINK

A set of machines, called nodes, that run containerized applications managed by Kubernetes. A cluster has at least one worker node and at least one master node.[+])

The worker node(s) host the pods that are the components of the application. The master node(s) manages the worker nodes and the pods in the cluster. Multiple master nodes are used to provide a cluster with failover and high availability.

Cluster ArchitectLINK

A person who designs infrastructure that involves one or more Kubernetes clusters.[+])

Cluster architects are concerned with best practices for distributed systems, for example: high availability and security.

Cluster InfrastructureLINKThe infrastructure layer provides and maintains VMs, networking, security groups and others. [+])

The infrastructure layer provides and maintains VMs, networking, security groups and others.

Cluster OperationsLINKActivities such as upgrading the clusters, implementing security, storage, ingress, networking, logging and monitoring, and other operations involved in managing a Kubernetes cluster. [+])

Activities such as upgrading the clusters, implementing security, storage, ingress, networking, logging and monitoring, and other operations involved in managing a Kubernetes cluster.

Cluster OperatorLINK

A person who configures, controls, and monitors clusters.[+])

Their primary responsibility is keeping a cluster up and running, which may involve periodic maintenance activities or upgrades.

Note: Cluster operators are different from the Operator pattern that extends the Kubernetes API.

Code ContributorLINK

A person who develops and contributes code to the Kubernetes open source codebase.[+])

They are also an active community memberA continuously active contributor in the K8s community. who participates in one or more Special Interest Groups (SIGs)Community members who collectively manage an ongoing piece or aspect of the larger Kubernetes open source project..

ConfigMapLINK

An API object used to store non-confidential data in key-value pairs. Can be consumed as environment variables, command-line arguments, or config files in a volumeA directory containing data, accessible to the containers in a pod..[+])

Allows you to decouple environment-specific configuration from your container imagesA lightweight and portable executable image that contains software and all of its dependencies., so that your applications are easily portable. When storing confidential data use a Secret.

ContainerLINK

A lightweight and portable executable image that contains software and all of its dependencies.[+])

Containers decouple applications from underlying host infrastructure to make deployment easier in different cloud or OS environments, and for easier scaling.

Container Environment VariablesLINK

Container environment variables are name=value pairs that provide useful information into containers running in a Pod.[+])

Container environment variables provide information that is required by the running containerized applications along with information about important resources to the ContainersA lightweight and portable executable image that contains software and all of its dependencies.. For example, file system details, information about the container itself, and other cluster resources such as service endpoints.

Container Lifecycle HooksLINK

The lifecycle hooks expose events in the ContainerA lightweight and portable executable image that contains software and all of its dependencies. management lifecycle and let the user run code when the events occur.[+])

Two hooks are exposed to Containers: PostStart which executes immediately after a container is created and PreStop which is blocking and is called immediately before a container is terminated.

Container network interface (CNI)LINK

Container network interface (CNI) plugins are a type of Network plugin that adheres to the appc/CNI specification.[+])

Container RuntimeLINK

The container runtime is the software that is responsible for running containers.[+])

Kubernetes supports several container runtimes: Docker,containerd, cri-o,rktlet and any implementation ofthe Kubernetes CRI (Container Runtime Interface).

Container runtime interface (CRI)LINK

The container runtime interface (CRI) is an API for container runtimesto integrate with kubelet on a node.[+])

For more information, see the CRI API and specifications.

Container Storage Interface (CSI)LINK

The Container Storage Interface (CSI) defines a standard interface to expose storage systems to containers.[+])

CSI allows vendors to create custom storage plugins for Kubernetes without adding them to the Kubernetes repository (out-of-tree plugins). To use a CSI driver from a storage provider, you must first deploy it to your cluster. You will then be able to create a Storage ClassA StorageClass provides a way for administrators to describe different available storage types. that uses that CSI driver.

containerdLINK

A container runtime with an emphasis on simplicity, robustness and portability[+])

containerd is a containerA lightweight and portable executable image that contains software and all of its dependencies. runtimethat runs as a daemon on Linux or Windows. containerd takes care of fetching andstoring container images, executing containers, providing network access, and more.

ContributorLINK

Someone who donates code, documentation, or their time to help the Kubernetes project or community.[+])

Contributions include pull requests (PRs), issues, feedback, special interest groups (SIG)Community members who collectively manage an ongoing piece or aspect of the larger Kubernetes open source project. participation, or organizing community events.

Control PlaneLINKThe container orchestration layer that exposes the API and interfaces to define, deploy, and manage the lifecycle of containers. [+])

The container orchestration layer that exposes the API and interfaces to define, deploy, and manage the lifecycle of containers.

ControllerLINK

In Kubernetes, controllers are control loops that watch the state of yourclusterA set of machines, called nodes, that run containerized applications managed by Kubernetes. A cluster has at least one worker node and at least one master node., then make or requestchanges where needed.Each controller tries to move the current cluster state closer to the desiredstate.[+])

Controllers watch the shared state of your cluster through theapiserverControl plane component that serves the Kubernetes API. (part of theControl PlaneThe container orchestration layer that exposes the API and interfaces to define, deploy, and manage the lifecycle of containers.).

Some controllers also run inside the control plane, providing control loops thatare core to Kubernetes’ operations. For example: the deployment controller, thedaemonset controller, the namespace controller, and the persistent volumecontroller (and others) all run within thekube-controller-managerComponent on the master that runs controllers..

CRI-OLINK

A tool that lets you use OCI container runtimes with Kubernetes CRI.[+])

CRI-O is an implementation of the Container runtime interface (CRI)An API for container runtimes to integrate with kubeletto enable using containerA lightweight and portable executable image that contains software and all of its dependencies.runtimes that are compatible with the Open Container Initiative (OCI)runtime spec.

Deploying CRI-O allows Kubernetes to use any OCI-compliant runtime as the containerruntime for running PodsThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster., and to fetchOCI container images from remote registries.

CronJobLINK

Manages a Job that runs on a periodic schedule.[+])

Similar to a line in a crontab file, a CronJob object specifies a schedule using the cron format.

CustomResourceDefinitionLINK

Custom code that defines a resource to add to your Kubernetes API server without building a complete custom server.[+])

Custom Resource Definitions let you extend the Kubernetes API for your environment if the publicly supported API resources can’t meet your needs.

DaemonSetLINK

Ensures a copy of a PodThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. is running across a set of nodes in a clusterA set of machines, called nodes, that run containerized applications managed by Kubernetes. A cluster has at least one worker node and at least one master node..[+])

Used to deploy system daemons such as log collectors and monitoring agents that typically must run on every NodeA node is a worker machine in Kubernetes..

Data PlaneLINKThe layer that provides capacity such as CPU, memory, network, and storage so that the containers can run and connect to a network. [+])

The layer that provides capacity such as CPU, memory, network, and storage so that the containers can run and connect to a network.

DeploymentLINK

An API object that manages a replicated application.[+])

Each replica is represented by a PodThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster., and the Pods are distributed among the nodes of a cluster.

Developer (disambiguation)LINK

May refer to: Application DeveloperA person who writes an application that runs in a Kubernetes cluster., Code ContributorA person who develops and contributes code to the Kubernetes open source codebase., or Platform DeveloperA person who customizes the Kubernetes platform to fit the needs of their project..[+])

This overloaded term may have different meanings depending on the context

Device PluginLINK

Device Plugins are containers running in Kubernetes that provide access to a vendor specific resource.[+])

Device Plugins are containers running in Kubernetes that provide access to a vendor-specific resource. Device Plugins advertise these resources to KubeletAn agent that runs on each node in the cluster. It makes sure that containers are running in a pod.. They can be deployed manually or as a DaemonSetEnsures a copy of a Pod is running across a set of nodes in a cluster., rather than writing custom Kubernetes code.

DisruptionLINK

Disruptions are events that lead to one or morePodsThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. going out of service.A disruption has consequences for workload resources, such asDeploymentAn API object that manages a replicated application., that rely on the affectedPods.[+])

If you, as cluster operator, destroy a Pod that belongs to an application,Kubernetes terms that a voluntary disruption. If a Pod goes offlinebecause of a Node failure, or an outage affecting a wider failure zone,Kubernetes terms that an involuntary disruption.

See Disruptions for more information.

DockerLINK

Docker (specifically, Docker Engine) is a software technology providing operating-system-level virtualization also known as containersA lightweight and portable executable image that contains software and all of its dependencies..[+])

Docker uses the resource isolation features of the Linux kernel such as cgroups and kernel namespaces, and a union-capable file system such as OverlayFS and others to allow independent containers to run within a single Linux instance, avoiding the overhead of starting and maintaining virtual machines (VMs).

Downstream (disambiguation)LINK

May refer to: code in the Kubernetes ecosystem that depends upon the core Kubernetes codebase or a forked repo.[+])

  • In the Kubernetes Community: Conversations often use downstream to mean the ecosystem, code, or third-party tools that rely on the core Kubernetes codebase. For example, a new feature in Kubernetes may be adopted by applications downstream to improve their functionality.
  • In GitHub or git: The convention is to refer to a forked repo as downstream, whereas the source repo is considered upstream.

Dynamic Volume ProvisioningLINK

Allows users to request automatic creation of storage VolumesA directory containing data, accessible to the containers in a pod..[+])

Dynamic provisioning eliminates the need for cluster administrators to pre-provision storage. Instead, it automatically provisions storage by user request. Dynamic volume provisioning is based on an API object, StorageClassA StorageClass provides a way for administrators to describe different available storage types., referring to a Volume PluginA Volume Plugin enables integration of storage within a Pod. that provisions a VolumeA directory containing data, accessible to the containers in a pod. and the set of parameters to pass to the Volume Plugin.

Endpoint SliceLINK

A way to group network endpoints together with Kubernetes resources.[+])

A scalable and extensible way to group network endpoints together. These can beused by kube-proxykube-proxy is a network proxy that runs on each node in the cluster. toestablish network routes on each nodeA node is a worker machine in Kubernetes..

Ephemeral ContainerLINK

A ContainerA lightweight and portable executable image that contains software and all of its dependencies. type that you can temporarily run inside a PodThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster..[+])

If you want to investigate a Pod that’s running with problems, you can add an ephemeral container to that Pod and carry out diagnostics. Ephemeral containers have no resource or scheduling guarantees, and you should not use them to run any part of the workload itself.

etcdLINK

Consistent and highly-available key value store used as Kubernetes’ backing store for all cluster data.[+])

If your Kubernetes cluster uses etcd as its backing store, make sure you have aback up planfor those data.

You can find in-depth information about etcd in the official documentation.

ExtensionsLINK

Extensions are software components that extend and deeply integrate with Kubernetes to support new types of hardware.[+])

Most cluster administrators will use a hosted or distribution instance of Kubernetes. As a result, most Kubernetes users will need to install extensions and fewer will need to author new ones.

FlexVolumeLINK

FlexVolume is an interface for creating out-of-tree volume plugins. The Container Storage InterfaceThe Container Storage Interface (CSI) defines a standard interface to expose storage systems to containers. is a newer interface which addresses several problems with FlexVolumes.[+])

FlexVolumes enable users to write their own drivers and add support for their volumes in Kubernetes. FlexVolume driver binaries and dependencies must be installed on host machines. This requires root access. The Storage SIG suggests implementing a CSIThe Container Storage Interface (CSI) defines a standard interface to expose storage systems to containers. driver if possible since it addresses the limitations with FlexVolumes.

Helm ChartLINK

A package of pre-configured Kubernetes resources that can be managed with the Helm tool.[+])

Charts provide a reproducible way of creating and sharing Kubernetes applications.A single chart can be used to deploy something simple, like a memcached Pod, or something complex, like a full web app stack with HTTP servers, databases, caches, and so on.

Horizontal Pod AutoscalerLINK

An API resource that automatically scales the number of pod replicas based on targeted CPU utilization or custom metric targets.[+])

HPA is typically used with Replication ControllersKubernetes service that ensures a specific number of instances of a pod are always running., DeploymentsAn API object that manages a replicated application., or Replica Sets. It cannot be applied to objects that cannot be scaled, for example DaemonSetsEnsures a copy of a Pod is running across a set of nodes in a cluster..

HostAliasesLINK

A HostAliases is a mapping between the IP address and hostname to be injected into a Pod’s hosts file.[+])

HostAliases is an optional list of hostnames and IP addresses that will be injected into the Pod’s hosts file if specified. This is only valid for non-hostNetwork Pods.

ImageLINK

Stored instance of a container that holds a set of software needed to run an application.[+])

A way of packaging software that allows it to be stored in a container registry, pulled to a local system, and run as an application. Meta data is included in the image that can indicate what executable to run, who built it, and other information.

IngressLINK

一个 API 对象,用于管理对集群中服务的外部访问,通常是 HTTP。[+])

Ingress 可以提供负载平衡,SSL 终端和基于名称的虚拟主机。

Init ContainerLINK

One or more initialization containers that must run to completion before any app containers run.[+])

Initialization (init) containers are like regular app containers, with one difference: init containers must run to completion before any app containers can start. Init containers run in series: each init container must run to completion before the next init container begins.

IstioLINK

An open platform (not Kubernetes-specific) that provides a uniform way to integrate microservices, manage traffic flow, enforce policies, and aggregate telemetry data.[+])

Adding Istio does not require changing application code. It is a layer of infrastructure between a service and the network, which when combined with service deployments, is commonly referred to as a service mesh. Istio’s control plane abstracts away the underlying cluster management platform, which may be Kubernetes, Mesosphere, etc.

JobLINK

A finite or batch task that runs to completion.[+])

Creates one or more PodThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. objects and ensures that a specified number of them successfully terminate. As Pods successfully complete, the Job tracks the successful completions.

KopsLINK

A CLI tool that helps you create, destroy, upgrade and maintain production-grade, highly available, Kubernetes clusters.[+])

Note: kops has general availability support only for AWS.Support for using kops with GCE and VMware vSphere are in alpha.

kops provisions your cluster with:

  • Fully automated installation
  • DNS-based cluster identification
  • Self-healing: everything runs in Auto-Scaling Groups
  • Limited OS support (Debian preferred, Ubuntu 16.04 supported, early support for CentOS & RHEL)
  • High availability (HA) support
  • The ability to directly provision, or to generate Terraform manifestsYou can also build your own cluster using KubeadmA tool for quickly installing Kubernetes and setting up a secure cluster. as a building block. kops builds on the kubeadm work.

kube-controller-managerLINK

Component on the master that runs controllersA control loop that watches the shared state of the cluster through the apiserver and makes changes attempting to move the current state towards the desired state..[+])

Logically, each controllerA control loop that watches the shared state of the cluster through the apiserver and makes changes attempting to move the current state towards the desired state. is a separate process, but to reduce complexity, they are all compiled into a single binary and run in a single process.

kube-proxyLINK

kube-proxy is anetwork proxy that runs on each node in your cluster, implementing part ofthe Kubernetes ServiceA way to expose an application running on a set of Pods as a network service. concept.[+])

kube-proxy maintains network rules on nodes. These network rules allownetwork communication to your Pods from network sessions inside or outsideof your cluster.

kube-proxy uses the operating system packet filtering layer if there is oneand it’s available. Otherwise, kube-proxy forwards the traffic itself.

kube-schedulerLINK

Component on the master that watches newly created pods that have no node assigned, and selects a node for them to run on.[+])

Factors taken into account for scheduling decisions include individual and collective resource requirements, hardware/software/policy constraints, affinity and anti-affinity specifications, data locality, inter-workload interference and deadlines.

KubeadmLINK

A tool for quickly installing Kubernetes and setting up a secure cluster.[+])

You can use kubeadm to install both the control plane and the worker node components.

KubectlLINK

A command line tool for communicating with a Kubernetes APIThe application that serves Kubernetes functionality through a RESTful interface and stores the state of the cluster. server.[+])

You can use kubectl to create, inspect, update, and delete Kubernetes objects.

KubeletLINK

An agent that runs on each node in the cluster. It makes sure that containers are running in a pod.[+])

The kubelet takes a set of PodSpecs that are provided through various mechanisms 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.

Kubernetes APILINK

The application that serves Kubernetes functionality through a RESTful interface and stores the state of the cluster.[+])

Kubernetes resources and “records of intent” are all stored as API objects, and modified via RESTful calls to the API. The API allows configuration to be managed in a declarative way. Users can interact with the Kubernetes API directly, or via tools like kubectl. The core Kubernetes API is flexible and can also be extended to support custom resources.

LabelLINK

Tags objects with identifying attributes that are meaningful and relevant to users.[+])

Labels are key/value pairs that are attached to objects such as PodsThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster.. They are used to organize and to select subsets of objects.

LimitRangeLINK

Provides constraints to limit resource consumption per ContainersA lightweight and portable executable image that contains software and all of its dependencies. or PodsThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. in a namespace.[+])

LimitRange limits the quantity of objects that can be created by type,as well as the amount of compute resources that may be requested/consumed by individual ContainersA lightweight and portable executable image that contains software and all of its dependencies. or PodsThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. in a namespace.

LoggingLINK

Logs are the list of events that are logged by clusterA set of machines, called nodes, that run containerized applications managed by Kubernetes. A cluster has at least one worker node and at least one master node. or application.[+])

Application and systems logs can help you understand what is happening inside your cluster. The logs are particularly useful for debugging problems and monitoring cluster activity.

Managed ServiceLINK

A software offering maintained by a third-party provider.[+])

Some examples of Managed Services are AWS EC2, Azure SQL Database, and GCP Pub/Sub, but they can be any software offering that can be used by an application. Service Catalog provides a way to list, provision, and bind with Managed Services offered by Service BrokersAn endpoint for a set of Managed Services offered and maintained by a third-party..

ManifestLINK

Specification of a Kubernetes API object in JSON or YAML format.[+])

A manifest specifies the desired state of an object that Kubernetes will maintain when you apply the manifest. Each configuration file can contain multiple manifests.

MemberLINK

A continuously active contributorSomeone who donates code, documentation, or their time to help the Kubernetes project or community. in the K8s community.[+])

Members can have issues and PRs assigned to them and participate in special interest groups (SIGs)Community members who collectively manage an ongoing piece or aspect of the larger Kubernetes open source project. through GitHub teams. Pre-submit tests are automatically run for members’ PRs. A member is expected to remain an active contributor to the community.

MinikubeLINK

A tool for running Kubernetes locally.[+])

Minikube runs a single-node cluster inside a VM on your computer.You can use Minikube totry Kubernetes in a learning environment.

Mirror PodLINK

A podThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. object that a kubelet usesto represent a static podA pod managed directly by the kubelet daemon on a specific node.[+])

When the kubelet finds a static pod in its configuration, it automatically tries tocreate a Pod object on the Kubernetes API server for it. This means that the podwill be visible on the API server, but cannot be controlled from there.

(For example, removing a mirror pod will not stop the kubelet daemon from running it).

NameLINK

客户端提供的字符串,引用资源 url 中的对象,如/api/v1/pods/some name[+])

一次只能有一个给定类型的对象具有给定的名称。但是,如果删除对象,则可以创建同名的新对象。

NamespaceLINK

An abstraction used by Kubernetes to support multiple virtual clusters on the same physical clusterA set of machines, called nodes, that run containerized applications managed by Kubernetes. A cluster has at least one worker node and at least one master node..[+])

Namespaces are used to organize objects in a cluster and provide a way to divide cluster resources. Names of resources need to be unique within a namespace, but not across namespaces.

Network PolicyLINK

A specification of how groups of Pods are allowed to communicate with each other and with other network endpoints.[+])

Network Policies help you declaratively configure which Pods are allowed to connect to each other, which namespaces are allowed to communicate, and more specifically which port numbers to enforce each policy on. NetworkPolicy resources use labels to select Pods and define rules which specify what traffic is allowed to the selected Pods. Network Policies are implemented by a supported network plugin provided by a network provider. Be aware that creating a network resource without a controller to implement it will have no effect.

NodeLINK

A node is a worker machine in Kubernetes.[+])

A worker node may be a VM or physical machine, depending on the cluster. It has local daemons or services necessary to run PodsThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. and is managed by the control plane. The daemons on a node include kubeletAn agent that runs on each node in the cluster. It makes sure that containers are running in a pod., kube-proxykube-proxy is a network proxy that runs on each node in the cluster., and a container runtime implementing the CRIAn API for container runtimes to integrate with kubelet such as DockerDocker is a software technology providing operating-system-level virtualization also known as containers..

Operator patternLINK

The operator pattern is a systemdesign that links a ControllerA control loop that watches the shared state of the cluster through the apiserver and makes changes attempting to move the current state towards the desired state. to one or more customresources.[+])

You can extend Kubernetes by adding controllers to your cluster, beyond the built-incontrollers that come as part of Kubernetes itself.

If a running application acts as a controller and has API access to carry out tasksagainst a custom resource that’s defined in the control plane, that’s an example ofthe Operator pattern.

Persistent VolumeLINK

An API object that represents a piece of storage in the cluster. Available as a general, pluggable resource that persists beyond the lifecycle of any individual PodThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster..[+])

PersistentVolumes (PVs) provide an API that abstracts details of how storage is provided from how it is consumed.PVs are used directly in scenarios where storage can be created ahead of time (static provisioning).For scenarios that require on-demand storage (dynamic provisioning), PersistentVolumeClaims (PVCs) are used instead.

Persistent Volume ClaimLINK

Claims storage resources defined in a PersistentVolume so that it can be mounted as a volume in a container.[+])

Specifies the amount of storage, how the storage will be accessed (read-only, read-write and/or exclusive) and how it is reclaimed (retained, recycled or deleted). Details of the storage itself are in the PersistentVolume specification.

Platform DeveloperLINK

A person who customizes the Kubernetes platform to fit the needs of their project.[+])

A platform developer may, for example, use Custom Resources or Extend the Kubernetes API with the aggregation layer to add functionality to their instance of Kubernetes, specifically for their application. Some Platform Developers are also contributorsSomeone who donates code, documentation, or their time to help the Kubernetes project or community. and develop extensions which are contributed to the Kubernetes community. Others develop closed-source commercial or site-specific extensions.

PodLINK

The smallest and simplest Kubernetes object. A Pod represents a set of running containersA lightweight and portable executable image that contains software and all of its dependencies. on your cluster.[+])

A Pod is typically set up to run a single primary container. It can also run optional sidecar containers that add supplementary features like logging. Pods are commonly managed by a DeploymentAn API object that manages a replicated application..

Pod Disruption BudgetLINK亦称作:_PDB_A Pod Disruption Budget allows an application owner to create an object for a replicated application, that ensures a certain number or percentage of Pods with an assigned label will not be voluntarily evicted at any point in time. PDBs cannot prevent an involuntary disruption, but will count against the budget. [+])

A Pod Disruption Budget allows an application owner to create an object for a replicated application, that ensures a certain number or percentage of Pods with an assigned label will not be voluntarily evicted at any point in time. PDBs cannot prevent an involuntary disruption, but will count against the budget.

Pod LifecycleLINK

A high-level summary of what phase the Pod is in within its lifecyle.[+])

The Pod Lifecycle is a high level summary of where a Pod is in its lifecyle. A Pod’s status field is a PodStatus object, which has a phase field that displays one of the following phases: Running, Pending, Succeeded, Failed, Unknown, Completed, or CrashLoopBackOff.

Pod PriorityLINK

Pod Priority indicates the importance of a Pod relative to other Pods.[+])

Pod Priority gives the ability to set scheduling priority of a Pod to be higher and lower than other Pods — an important feature for production clusters workload.

Pod Security PolicyLINK

Enables fine-grained authorization of PodThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. creation and updates.[+])

A cluster-level resource that controls security sensitive aspects of the Pod specification. The PodSecurityPolicy objects define a set of conditions that a Pod must run with in order to be accepted into the system, as well as defaults for the related fields. Pod Security Policy control is implemented as an optional admission controller.

PodPresetLINK

An API object that injects information such as secrets, volume mounts, and environment variables into pods at creation time.[+])

This object chooses the pods to inject information into using standard selectors. This allows the podspec definitions to be nonspecific, decoupling the podspec from environment specific configuration.

PreemptionLINK

Preemption logic in Kubernetes helps a pending Pod to find a suitable Node by evicting low priority Pods existing on that Node.[+])

If a Pod cannot be scheduled, the scheduler tries to preempt lower priority Pods to make scheduling of the pending Pod possible.

ProxyLINK

In computing, a proxy is a server that acts as an intermediary for a remoteservice.[+])

A client interacts with the proxy; the proxy copies the client’s data to theactual server; the actual server replies to the proxy; the proxy sends theactual server’s reply to the client.

kube-proxy is anetwork proxy that runs on each node in your cluster, implementing part ofthe Kubernetes ServiceA way to expose an application running on a set of Pods as a network service. concept.

You can run kube-proxy as a plain userland proxy service. If your operatingsystem supports it, you can instead run kube-proxy in a hybrid mode thatachieves the same overall effect using less system resources.

QoS ClassLINK

QoS Class (Quality of Service Class) provides a way for Kubernetes to classify Pods within the cluster into several classes and make decisions about scheduling and eviction.[+])

QoS Class of a Pod is set at creation time based on its compute resources requests and limits settings. QoS classes are used to make decisions about Pods scheduling and eviction.Kubernetes can assign one of the following QoS classes to a Pod: Guaranteed, Burstable or BestEffort.

QuantityLINK

A whole-number representation of small or large numbers using SI suffixes.[+])

Quantities are representations of small or large numbers using a compact,whole-number notation with SI suffixes. Fractional numbers are representedusing milli units, while large numbers can be represented using kilo,mega, or giga units.

For instance, the number 1.5 is represented as 1500m, while the number 1000can be represented as 1k, and 1000000 as 1M. You can also specifybinary-notation suffixes; the number 2048 can be written as 2Ki.

The accepted decimal (power-of-10) units are m (milli), k (kilo,intentionally lowercase), M (mega), G (giga), T (terra), P (peta),E (exa).

The accepted binary (power-of-2) units are Ki (kibi), Mi (mebi), Gi (gibi),Ti (tebi), Pi (pebi), Ei (exbi).

RBAC (Role-Based Access Control)LINK

Manages authorization decisions, allowing admins to dynamically configure access policies through the Kubernetes APIThe application that serves Kubernetes functionality through a RESTful interface and stores the state of the cluster..[+])

RBAC utilizes roles, which contain permission rules, and role bindings, which grant the permissions defined in a role to a set of users.

ReplicaSetLINK

A ReplicaSet (aims to) maintain a set of replica Pods running at any given time.[+])

Workload objects such as DeploymentAn API object that manages a replicated application. make use of ReplicaSetsto ensure that the configured number of PodsThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. arerunning in your cluster, based on the spec of that ReplicaSet.

Replication ControllerLINK

Kubernetes service that ensures a specific number of instances of a pod are always running.[+])

Will automatically add or remove running instances of a pod, based on a set value for that pod. Allows the pod to return to the defined number of instances if pods are deleted or if too many are started by mistake.

Resource QuotasLINK

Provides constraints that limit aggregate resource consumption per NamespaceAn abstraction used by Kubernetes to support multiple virtual clusters on the same physical cluster..[+])

Limits the quantity of objects that can be created in a namespace by type, as well as the total amount of compute resources that may be consumed by resources in that project.

ReviewerLINK

A person who reviews code for quality and correctness on some part of the project.[+])

Reviewers are knowledgeable about both the codebase and software engineering principles. Reviewer status is scoped to a part of the codebase.

rktLINK

A security-minded, standards-based container engine.[+])

rkt is an application containerA lightweight and portable executable image that contains software and all of its dependencies. engine featuring a PodThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster.-native approach, a pluggable execution environment, and a well-defined surface area. rkt allows users to apply different configurations at both the Pod and application level. Each Pod executes directly in the classic Unix process model, in a self-contained, isolated environment.

SecretLINK

Stores sensitive information, such as passwords, OAuth tokens, and ssh keys.[+])

Allows for more control over how sensitive information is used and reduces the risk of accidental exposure, including encryption at rest. A PodThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. references the secret as a file in a volume mount or by the kubelet pulling images for a pod. Secrets are great for confidential data and ConfigMaps for non-confidential data.

Security ContextLINK

The securityContext field defines privilege and access control settings for a Pod or Container, including the runtime UID and GID.[+])

The securityContext field in a PodThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. (applying to all containers) or container is used to set the user, groups, capabilities, privilege settings, and security policies (SELinux/AppArmor/Seccomp) and more that container processes use.

SelectorLINK

Allows users to filter a list of resources based on labels.[+])

Selectors are applied when querying lists of resources to filter them by LabelsTags objects with identifying attributes that are meaningful and relevant to users..

ServiceLINK

将运行在一组 PodsThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. 上的应用程序公开为网络服务的抽象方法。[+])

服务所针对的Pod集(通常)由 selectorAllows users to filter a list of resources based on labels. 确定。 如果添加或删除了更多Pod,则与选择器匹配的Pod集将发生变化。 该服务确保可以将网络流量定向到该工作负载的当前Pod集。

Service AccountLINK

Provides an identity for processes that run in a PodThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster..[+])

When processes inside Pods access the cluster, they are authenticated by the API server as a particular service account, for example, default. When you create a Pod, if you do not specify a service account, it is automatically assigned the default service account in the same namespace NamespaceAn abstraction used by Kubernetes to support multiple virtual clusters on the same physical cluster..

Service BrokerLINK

An endpoint for a set of Managed ServicesA software offering maintained by a third-party provider. offered and maintained by a third-party.[+])

Service BrokersAn endpoint for a set of Managed Services offered and maintained by a third-party. implement the Open Service Broker API spec and provide a standard interface for applications to use their Managed Services. Service Catalog provides a way to list, provision, and bind with Managed Services offered by Service Brokers.

Service CatalogLINK

An extension API that enables applications running in Kubernetes clusters to easily use external managed software offerings, such as a datastore service offered by a cloud provider.[+])

It provides a way to list, provision, and bind with external Managed ServicesA software offering maintained by a third-party provider. from Service BrokersAn endpoint for a set of Managed Services offered and maintained by a third-party. without needing detailed knowledge about how those services are created or managed.

SIG (special interest group)LINK

Community membersA continuously active contributor in the K8s community. who collectively manage an ongoing piece or aspect of the larger Kubernetes open source project.[+])

Members within a SIG have a shared interest in advancing a specific area, such as architecture, API machinery, or documentation.SIGs must follow the SIG governance guidelines, but can have their own contribution policy and channels of communication.

For more information, see the kubernetes/community repo and the current list of SIGs and Working Groups.

StatefulSetLINK

Manages the deployment and scaling of a set of PodsThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster., and provides guarantees about the ordering and uniqueness of these Pods.[+])

Like a DeploymentAn API object that manages a replicated application., a StatefulSet manages Pods that are based on an identical container spec. Unlike a Deployment, a StatefulSet maintains a sticky identity for each of their Pods. These pods are created from the same spec, but are not interchangeable: each has a persistent identifier that it maintains across any rescheduling.

Static PodLINK

A podThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. managed directly by the kubeletdaemon on a specific node,[+])

without the API server observing it.

Storage ClassLINK

A StorageClass provides a way for administrators to describe different available storage types.[+])

StorageClasses can map to quality-of-service levels, backup policies, or to arbitrary policies determined by cluster administrators. Each StorageClass contains the fields provisioner, parameters, and reclaimPolicy, which are used when a Persistent VolumeAn API object that represents a piece of storage in the cluster. Available as a general, pluggable resource that persists beyond the lifecycle of any individual Pod. belonging to the class needs to be dynamically provisioned. Users can request a particular class using the name of a StorageClass object.

sysctlLINK

sysctl is a semi-standardized interface for reading or changing theattributes of the running Unix kernel.[+])

On Unix-like systems, sysctl is both the name of the tool that administratorsuse to view and modify these settings, and also the system call that the tooluses.

ContainerA lightweight and portable executable image that contains software and all of its dependencies. runtimes andnetwork plugins may rely on sysctl values being set a certain way.

TaintLINK

A core object consisting of three required properties: key, value, and effect. Taints prevent the scheduling of pods on nodes or node groups.[+])

Taints and tolerationsA core object consisting of three required properties: key, value, and effect. Tolerations enable the scheduling of pods on nodes or node groups that have a matching taint. work together to ensure that pods are not scheduled onto inappropriate nodes. One or more taints are applied to a nodeA node is a worker machine in Kubernetes.. A node should only schedule a pod with the matching tolerations for the configured taints.

TolerationLINK

A core object consisting of three required properties: key, value, and effect. Tolerations enable the scheduling of pods on nodes or node groups that have matching taintsA core object consisting of three required properties: key, value, and effect. Taints prevent the scheduling of pods on nodes or node groups..[+])

Tolerations and taintsA core object consisting of three required properties: key, value, and effect. Taints prevent the scheduling of pods on nodes or node groups. work together to ensure that pods are not scheduled onto inappropriate nodes. One or more tolerations are applied to a podThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster.. A toleration indicates that the podThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. is allowed (but not required) to be scheduled on nodes or node groups with matching taintsA core object consisting of three required properties: key, value, and effect. Taints prevent the scheduling of pods on nodes or node groups..

UIDLINK

Kubernetes 系统生成的字符串,唯一标识对象。[+])

在 Kubernetes 集群的整个生命周期中创建的每个对象都有一个不同的 uid,它旨在区分类似实体的历史事件。

Upstream (disambiguation)LINK

May refer to: core Kubernetes or the source repo from which a repo was forked.[+])

  • In the Kubernetes Community: Conversations often use upstream to mean the core Kubernetes codebase, which the general ecosystem, other code, or third-party tools relies upon. For example, community members may suggest that a feature is moved upstream so that it is in the core codebase instead of in a plugin or third-party tool.
  • In GitHub or git: The convention is to refer to a source repo as upstream, whereas the forked repo is considered downstream.

VolumeLINK

A directory containing data, accessible to the containers in a podThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster..[+])

A Kubernetes volume lives as long as the podThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster. that encloses it. Consequently, a volume outlives any containersA lightweight and portable executable image that contains software and all of its dependencies. that run within the podThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster., and data is preserved across containerA lightweight and portable executable image that contains software and all of its dependencies. restarts.

Volume PluginLINK

A Volume Plugin enables integration of storage within a PodThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster..[+])

A Volume Plugin lets you attach and mount storage volumes for use by a PodThe smallest and simplest Kubernetes object. A Pod represents a set of running containers on your cluster.. Volume plugins can be in tree or out of tree. In tree plugins are part of the Kubernetes code repository and follow its release cycle. Out of tree plugins are developed independently.

WG (working group)LINK

Facilitates the discussion and/or implementation of a short-lived, narrow, or decoupled project for a committee, SIGCommunity members who collectively manage an ongoing piece or aspect of the larger Kubernetes open source project., or cross-SIG effort.[+])

Working groups are a way of organizing people to accomplish a discrete task, and are relatively easy to create and deprecate when inactive.

For more information, see the kubernetes/community repo and the current list of SIGs and working groups.

WorkloadLINK

A workload is an application running on Kubernetes.[+])

Various core objects that represent different types or parts of a workloadinclude the DaemonSet, Deployment, Job, ReplicaSet, and StatefulSet objects.

For example, a workload that has a web server and a database might run thedatabase in one StatefulSetManages the deployment and scaling of a set of Pods, and provides guarantees about the ordering and uniqueness of these Pods. and the web serverin a DeploymentAn API object that manages a replicated application..

反馈

此页是否对您有帮助?

感谢反馈。如果您有一个关于如何使用 Kubernetes 的特定的、需要答案的问题,可以访问Stack Overflow.在 GitHub 仓库上登记新的问题报告问题或者提出改进建议.