kubernetes
文章平均质量分 66
会跳的绿豆
幸福是相对的,祸福是相依的,只要我在意的...
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CentOS7 搭建 NFS 服务器
一、服务端配置 1、配置环境 关闭防火墙服务 # 停止并禁用防火墙 $ systemctl stop firewalld $ systemctl disable firewalld BASH 关闭并禁用SELinux $ setenforce 0 $ sed -i 's/^SELINUX=enforcing$/SELINUX=disabled/' /etc/selinux/config BASH 2、安装nfs-utils和rpcbind $ yum install -y n转载 2022-04-01 18:32:08 · 18044 阅读 · 0 评论 -
harbor chart包helm安装参数对照表
表格摘自harbor官网,谷歌翻译机译 Parameter 描述翻译 Description Default Expose expose.type 公开服务的方式:入口,群集IP,nodePort或loadBalancer,其他值将被忽略,服务的创建将被跳过。 The way how to expose the service:ingress,clusterIP,nodePo...原创 2021-02-23 14:13:17 · 1329 阅读 · 0 评论 -
centos7 部署k8s集群
操作环境为VMware 虚拟机 部署前最好 yum update 更新一下系统的服务(时间较长) #1、能访问外网 #2、关闭防火墙; systemctl stop firewalld && systemctl disable firewalld #3、关闭SELinux; setenforce 0 #4、关闭Swap交换分区; swapoff -a #5、master与node之间ssh免密登录; #设置hostname hostnamectl set-hostname .原创 2020-12-28 17:21:02 · 929 阅读 · 0 评论 -
Kubernetes K8S之kubectl命令详解及常用示例
Kubernetes kubectl命令详解与常用示例,基于k8s v1.17.4版本 kubectl常用示例 查看类命令 1 # 获取节点和服务版本信息 2 kubectl get nodes 3 # 获取节点和服务版本信息,并查看附加信息 4 kubectl get nodes -o wide 5 6 # 获取pod信息,默认是default名称空间 7 kubectl get pod 8 # 获取pod信息,默认是default名称空间,并查看附加信息【如:po..转载 2020-09-21 17:55:53 · 11421 阅读 · 1 评论
分享