01 2021 档案
摘要:一、流程图 二、实现 1、在master端创建一个永久的token [root@master ~]# kubeadm token create --ttl 0 --print-join-command kubeadm join 172.16.208.202:6443 --token d1m9gy.o
阅读全文
摘要:1、1.0版本 #!/bin/bash #当前版本仅支持CentOS7的系统 if [ `whoami` != 'root' ]; then echo -e "\e[1;31m 请使用root执行... \e[1;31m" exit 1 fi SYSTEM_VERSION=`lsb_release
阅读全文
摘要:一、环境介绍 阿里云服务器CentOS 7.9 [root@keep1 ~]# cat /etc/hosts ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 127.0.0.1 localhost loca
阅读全文
摘要:一、元数据接口官方文档 https://help.aliyun.com/document_detail/49122.html?spm=5176.20966629.toubu.3.f2991ddcpxxvD1#title-d20-np3-qf1 二、常用接口 1、网卡对应的网络相关 #获取网卡mac地
阅读全文
摘要:一、nfs服务器安装nfs与配置 yum -y install nfs-utils rpcbind systemctl start rpcbind.service systemctl start nfs #配置 mkdir /data/nfs -p chown nfsnobody.nfsnobody
阅读全文