Glossary

This document describes some frequently used glossaries in KubeSphere as shown below:

ObjectConcepts
ProjectIt can be regarded as Kubernetes Namespace which is intended for use in environments with many users spread across multiple teams, or projects, provides virtual isolation for the resources in KubeSphere, see Namespace.
PodsPods, are the smallest deployable units of computing that can be created and managed in KubeSphere, see Pods.
DeploymentsDeployments, are used to describe a desired state in a Deployment object, and the Deployment controller changes the actual state to the desired state at a controlled rate, see Deployments.
StatefulSetsStatefulSets, StatefulSet is the workload object used to manage stateful applications, such as MySQL, see StatefulSets.
DaemonSetDaemonSet, A DaemonSet ensures that all (or some) Nodes run a copy of a Pod,such as fluentd or logstash, see DaemonSet.
JobsJobs, A job creates one or more pods and ensures that a specified number of them successfully terminate, see Jobs.
CronJobCronJob, it creates Jobs on a time-based schedule, a CronJob object is like one line of a crontab (cron table) file. It runs a job periodically on a given schedule, see CronJob.
ServicesServices, A Kubernetes Service is an abstraction which defines a logical set of Pods and a policy by which to access them - sometimes called a micro-service. See Services.
RoutesIngress, An API object that manages external access to the services in a cluster, typically HTTP, Ingress can provide load balancing, SSL termination and name-based virtual hosting, see Ingress.
Image RegistryImage registry, is used to store and distribute Docker Images, it could be public or private, see Image.
VolumePersistent Volume Claim (PVC), is a request for storage by a user, allow a user to consume abstract storage resources, see PVC.
Storage ClassesA Storage Class provides a way for administrators to describe the “classes” of storage they offer, see StorageClasses.
PipelineJenkins Pipeline is a suite of plugins which supports implementing and integrating continuous delivery pipelines into Jenkins, see Pipeline.
WorkSpaceMultitenancy based, is the basic unit that is used to manage projects, DevOps and different level users.
NodesA node is a worker machine that may be a VM or physical machine, depending on the cluster. Each node contains the services necessary to run pods and is managed by the master components. see Nodes.