K8S哲学 - cluster

A Kubernetes cluster consists of two types of resources:

  • The Control Plane coordinates the cluster
  • Nodes are the workers that run applications
    The Control Plane is responsible for managing the cluster. The Control Plane coordinates all activities in your cluster, such as scheduling applications, maintaining applications' desired state, scaling applications, and rolling out new updates
    A node is a VM or a physical computer that serves as a worker machine in a Kubernetes cluster. Each node has a Kubelet, which is an agent for managing the node and communicating with the Kubernetes control plane. The node should also have tools for handling container operations, such as containerd or CRI-O. A Kubernetes cluster that handles production traffic shouldhave a minimum of three nodes because if one node goes down, both an etcd member and a control plane instance are lost, and redundancy is compromised. You can mitigate this risk by adding more control plane nodes.

在 Kubernetes 中,kubelet 是运行在每个节点上的一个关键组件,它负责管理该节点上的 Pods 和容器。kubelet 通过 Kubernetes API 与控制平面进行通信,获取调度到该节点的 Pods 的信息,报告节点和 Pods 的状态,以及执行控制平面发出的各种操作,如启动和停止 Pods。

Kubernetes API 是控制平面对外暴露的接口,它定义了一组 RESTful API,用于管理和操作 Kubernetes 集群的各种资源,如 Nodes、Pods、Services 等。除了 kubelet 和其他节点级别的组件,终端用户也可以直接使用 Kubernetes API 来与集群进行交互。例如,当你使用 kubectl 命令行工具时,kubectl 实际上是在后台调用 Kubernetes API 来执行你的命令。

kubelet vs kubectl

Node-level components, such as the kubelet, communicate with the control plane using the Kubernetes API, which the control plane exposes. End users can also use the Kubernetes API directly to interact with the cluster

kubectl apply

kubectl apply 命令用于应用或更新 Kubernetes 资源。它并不是用来启动集群的,而是用来在已经运行的 Kubernetes 集群中创建或更新资源,如 Pods、Services、Deployments 等。

Minikube 是一个轻量级的 Kubernetes 实现,它在你的本地机器上创建一个虚拟机,并在其中部署一个只包含一个节点的简单集群。Minikube 支持 Linux、macOS 和 Windows 系统。Minikube 的命令行接口提供了一些基本的引导操作,用于操作你的集群,包括启动(start)、停止(stop)、查看状态(status)和删除(delete)。

相关推荐
江畔柳前堤2 小时前
GO01-Go 语言与主流编程语言深度对比
开发语言·人工智能·后端·微服务·云原生·golang·go
探索云原生7 小时前
终于搞懂 Kueue:5 个核心对象一次讲透
linux·docker·ai·云原生·kubernetes
众人皆醒我独醉8 小时前
etcd,其实不是你以为的"数据库"——Kubernetes 大脑的六个反直觉真相
面试·kubernetes
月落星还在9 小时前
Spring MVC 与 Spring Boot:从“手动挡”到“自动驾驶”的进化论,兼谈前后端分离的哲学
spring boot·spring·云原生·mvc
蜀道山老天师10 小时前
从零读懂 K8s:核心概念、集群架构与工作原理
容器·架构·kubernetes
静待雨落12 小时前
Docker 高频命令
docker·容器
Database_Cool_12 小时前
数据库性能不够用,升级到什么方案好?阿里云 PolarDB(云原生数据库领导者,兼容 MySQL/PostgreSQL/Oracle)平滑升级与百倍弹性
数据库·阿里云·云原生
霸道流氓气质12 小时前
微服务架构核心概念业务示例
微服务·云原生·架构
ai_coder_ai13 小时前
编写自动化脚本,在自己后端服务中使用云原生Baas服务进行数据库相关操作
数据库·云原生·自动化
OsDepK13 小时前
Windows快速部署Docker
运维·docker·容器