随笔分类 -  K8s系列

摘要:apiVersion: v1 kind: PersistentVolume metadata: name: pv-v1 labels: app: v1 spec: nfs: server: 10.16.17.57 #NFS服务器地址 path: /data/volumes/v1 #NFS路径 acc 阅读全文
posted @ 2024-03-21 11:23 吃吃吃大王 阅读(13) 评论(0) 推荐(0) 编辑
摘要:安装NFS,设置共享目录 #centos yum -y install nfs-utils #ubuntu apt install nfs-server #启动RPC服务 start rpcbind #创建共享目录 mkdir -p /data/share 共享目录 vim /etc/exports 阅读全文
posted @ 2024-03-21 11:22 吃吃吃大王 阅读(12) 评论(0) 推荐(0) 编辑
摘要:Nodeport类型: apiVersion: v1 #api版本 kind: Service #资源类型 metadata: name: nginx-service #Service 的名称 labels: #Service 自己的标签 app: nginx #为该 Service 设置 key 阅读全文
posted @ 2024-03-21 11:14 吃吃吃大王 阅读(9) 评论(0) 推荐(0) 编辑
摘要:apiVersion: v1 kind: Pod metadata: name: pod-test #Pod名称 labels: app: nginx #Pod标签 version: v1 #Pod标签 spec: nodeName: "10.16.17.56" #Pod被调度到指定的node节点 阅读全文
posted @ 2024-03-21 10:58 吃吃吃大王 阅读(4) 评论(0) 推荐(0) 编辑
摘要:apiVersion: apps/v1 kind: Deployment metadata: name: nginx-deployment #Deployment名称 labels: app: nginx #Deployment标签定义 spec: replicas: 1 #副本数 selector 阅读全文
posted @ 2024-03-21 10:48 吃吃吃大王 阅读(7) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示