打包容器
shutdown_Dockerfile同级目录执行
sudo docker build -t hello:v0.01 -f shutdown_Dockerfile .
导出docker 容器
AAA:8.2,8.2表示镜像版本号
docker save -o tar名称.tar AAA:8.2 BBB:5.6
推送到其它node节点
scp hello-v0.01.tar [email protected]:/home/deploy
scp 导出的docker容器名.tar 用户名@ip地址:推送目录
导入docker
docker load -i ./hello-v0.01.tar
创建pod
kubectl create -f hello-deploy.yaml
kubectl get pods 查看 STATUS 状态是否为Running
代码链接:https://github.com/v04007/GO/tree/master/grammar/shutdown
标签:8.2,tar,helloworld,shutdown,go,docker,k8s,v0.01,hello From: https://www.cnblogs.com/nothingness/p/17450518.html