11 Star 25 Fork 8

openEuler/k8s-install

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
test 599 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/bash
dist=("oe2309")
baseline=("125" "129")
docker_125_rpms="libcgroup docker-runc containerd moby moby-engine moby-client container-selinux tar"
docker_129_rpms="libcgroup runc containerd docker docker-engine docker-client container-selinux tar"
for d in ${dist[@]}; do
if [ $d == "oe2309" ]; then
for b in ${baseline[@]}; do
echo -e "\e[34mTest: only install docker Param: ${d} ${b}\e[0m"
./k8s-install -i docker -d $d -b $b
rpmlist=docker_${b}_rpms
rpm -e ${!rpmlist} --nodeps
echo -e "\e[34mTest pass\e[0m"
done
fi
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openeuler/k8s-install.git
[email protected]:openeuler/k8s-install.git
openeuler
k8s-install
k8s-install
master

搜索帮助