标签:etc clust -name rbo deploy 1.9 配置 默认 nan
Tips:默认Docker的镜像文件都是存储在Hyper-V的默认目录下,
开始 -> Windows 管理工具 -> Hyper-V管理器 -> 设置 -> 虚拟硬盘,
我们可以修改,具体参考 https://www.jianshu.com/p/fd780d0469d4
https://rancher.com/docs/rancher/v1.6/zh/installing-rancher/installing-server/
docker run -d --restart=unless-stopped -p 8090:8080 rancher/server
docker ps 查看实例
Docker logs -f 84 查看实例启动过程
打开Ipv4:8090 查看 rancher server
Tips: Cattle, K8s, Swarm 编排工具
公网ip:ipconfig查看Ipv4地址
主机ip:rancher ui 系统管理 -> 系统设置查看
1.Hyper-v创建虚拟linux主机:新建添加ubuntu
2.ubuntu虚拟机配置交换机为默认
3.Ubuntu获取临时权限sudo -i
4.自动安装 Docker 及手动安装17.03
https://docs.docker.com/install/linux/docker-ce/ubuntu/#install-docker-ce-1
https://yq.aliyun.com/articles/110806
sudo nano /etc/docker/daemon.json 添加以下加速器
{
“registry-mirriors”: [“https://jhq6kk07.mirror.aliyuncs.com
”]
}
Ctrl+X Y 回车退出
https://www.bladewan.com/2018/03/26/rke部署kubernetes/
https://github.com/kubernetes/kubernetes/tree/release-1.9 源码安装
Kubectl get node查看已有节点
Kubectl cluster-info 查看集群信息
Kubectl get cs 查看组件健康状态
Kubectl get svc
Kubectl get pod --all-namespaces 查看所有命名空间的pod
Kubectl get namespaces 查看所有命名空间
Kubectl get pod --namespace=nginx -o wide 节点信息
Kubectl describe pod kube-dns-6f7666d48c-rzmgg --namespace=kube-system 查看pod信息
Kubectl get deployment
Kubectl get pod
Kubectl get node --show-labels 查看节点labels
官方:https://www.cnrancher.com/
docker run -d -p 80:80 -p 443:443 rancher/rancher:v2.0.0
https://forums.cnrancher.com/article/39
https://hub.docker.com/explore/
Images:
ubuntu:xenial
Nodeport: 每个node 的同一端口都能映射访问
Hostport:设置的当前node映射访问
标签:etc clust -name rbo deploy 1.9 配置 默认 nan
原文地址:https://www.cnblogs.com/yuqlblog/p/9105721.html