install/community/kind/online/ #1858
Replies: 6 comments 4 replies
-
myIP=$(ip -o route get 1.1.1.1 | cut -d " " -f 7) |
Beta Was this translation helpful? Give feedback.
-
安装docker 的检查命令 这里建议不用 exit 0 ; 否则直接退出host了。还得我每次重新打开ssh 连接 |
Beta Was this translation helpful? Give feedback.
-
ARM 环境下, Kind 镜像无法使用。建议使用 |
Beta Was this translation helpful? Give feedback.
-
set -e
if [ $(free -g|grep Mem | awk '{print $2}') -lt 12 ]; then (echo "insufficient memory! (should >=12G)"; exit 1); fi
if [ $(grep 'processor' /proc/cpuinfo |sort |uniq |wc -l) -lt 8 ]; then (echo "insufficient CPU! (should >=8C)"; exit 1); fi
if [ $(df -m / |tail -n 1 | awk '{print $4}') -lt 30720 ]; then (echo "insufficient free disk space of root partition!(should >=30G)"; exit 1); fi
ping daocloud.io -c 1 &> /dev/null || ( echo "no connection to internet! abort." && exit 1; )
echo "precheck pass.." 可以移除 exit 1 会导致程序退出 ssh 链接. |
Beta Was this translation helpful? Give feedback.
-
没有arm版的安装器吗 |
Beta Was this translation helpful? Give feedback.
-
“You can add -j8+ to your installation command to retry from last step” 这是需要安装jdk.8+? |
Beta Was this translation helpful? Give feedback.
-
install/community/kind/online/
DaoCloud Enterprise 5.0 下一代容器化平台集大成者,引领云原生浪潮,推动数字化转型。
https://docs.daocloud.io/install/community/kind/online/
Beta Was this translation helpful? Give feedback.
All reactions