Linux 第2页
Kubernetes-对象资源 - Service-搜博客

Kubernetes-对象资源 – Service

Kubernetes 在设计之初就充分考虑了针对容器的服务发现与负载均衡机制,提供了 Service 资源,并通过 kube-proxy 配合 cloud provider 来适应不同的应用场景。随着 kubernetes 用户的激增,用户...
battlehare的头像-搜博客钻石会员battlehare2个月前
0708
Kubernetes-对象资源 - Service Account-搜博客

Kubernetes-对象资源 – Service Account

Service account 是为了方便 Pod 里面的进程调用 Kubernetes API 或其他外部服务而设计的。它与 User account 不同 User account 是为人设计的,而 service account 则是为 Pod 中的进程调用 Ku...
battlehare的头像-搜博客钻石会员battlehare2个月前
04714
Kubernetes-对象资源 - Security Context 和 Pod Security Policy-搜博客

Kubernetes-对象资源 – Security Context 和 Pod Security Policy

Security Context 的目的是限制不可信容器的行为,保护系统和其他容器不受其影响。 Kubernetes 提供了三种配置 Security Context 的方法: Container-level Security Context:仅应用到指定的容...
battlehare的头像-搜博客钻石会员battlehare2个月前
0608
Kubernetes-资源对象 - Secret-搜博客

Kubernetes-资源对象 – Secret

Secret 解决了密码、token、密钥等敏感数据的配置问题,而不需要把这些敏感数据暴露到镜像或者 Pod Spec 中。Secret 可以以 Volume 或者环境变量的方式使用。 Secret 类型 Secret 有三种类型: ...
battlehare的头像-搜博客钻石会员battlehare2个月前
0398
Kubernetes-对象资源 - Resource Quotas-搜博客

Kubernetes-对象资源 – Resource Quotas

资源配额(Resource Quotas)是用来限制用户资源用量的一种机制。 它的工作原理为 资源配额应用在 Namespace 上,并且每个 Namespace 最多只能有一个 ResourceQuota 对象 开启计算资源配额后,...
battlehare的头像-搜博客钻石会员battlehare2个月前
0355
Kubernetes-资源对象 - ReplicationController 和 ReplicaSet-搜博客

Kubernetes-资源对象 – ReplicationController 和 ReplicaSet

ReplicationController(也简称为 rc)用来确保容器应用的副本数始终保持在用户定义的副本数,即如果有容器异常退出,会自动创建新的 Pod 来替代;而异常多出来的容器也会自动回收。Replication...
battlehare的头像-搜博客钻石会员battlehare2个月前
0359
Kubernetes-资源对象 - PodPreset-搜博客

Kubernetes-资源对象 – PodPreset

PodPreset 用来给指定标签的 Pod 注入额外的信息,如环境变量、存储卷等。这样,Pod 模板就不需要为每个 Pod 都显式设置重复的信息。 当然,你也可以给 Pod 增加注解 podpreset.admission.kuber...
battlehare的头像-搜博客钻石会员battlehare2个月前
0477
Kubernetes-资源对象 - Pod-搜博客

Kubernetes-资源对象 – Pod

Pod 是一组紧密关联的容器集合,它们共享 IPC、Network 和 UTS namespace,是 Kubernetes 调度的基本单位。Pod 的设计理念是支持多个容器在一个 Pod 中共享网络和文件系统,可以通过进程间通信...
battlehare的头像-搜博客钻石会员battlehare2个月前
05313
Kubernetes-资源对象 - Persistent Volume-搜博客

Kubernetes-资源对象 – Persistent Volume

PersistentVolume (PV) 和 PersistentVolumeClaim (PVC) 提供了方便的持久化卷:PV 提供网络存储资源,而 PVC 请求存储资源。这样,设置持久化的工作流包括配置底层文件系统或者云数据卷、创建...
battlehare的头像-搜博客钻石会员battlehare2个月前
0359
Kubernetes-资源对象 - Node-搜博客

Kubernetes-资源对象 – Node

Node 是 Pod 真正运行的主机,可以是物理机,也可以是虚拟机。为了管理 Pod,每个 Node 节点上至少要运行 container runtime(比如 docker 或者 rkt)、kubelet 和 kube-proxy 服务。 Node 管理...
battlehare的头像-搜博客钻石会员battlehare2个月前
02815