一键部署kubernetes脚本

系统环境:

操作系统:Centos 7.8

脚本功能:

1、支持kubernetes版本选择

2、支持Dcoker-ce版本选择

3、支持Master、Node节点安装

注意:Node需要跟Master做好免密钥哦

[root@localhost ~]# vim auto_install_kubernetes.sh
#!/bin/bash

source /etc/init.d/functions
 
SYS_VERSION=$(cat /etc/redhat-release)
IPADDR=$(hostname -I |awk '{print $1}')
Uptime_day=$(uptime |awk '{print $3,$4}')
CPU_NUM=$(grep -c 'processor' /proc/cpuinfo)
Uptime=$(uptime -p |awk '{print $6,$7,$8,$9}')
MEM_IN

你可能感兴趣的:(干货满满,kubernetes,容器,云原生)