准备
已经安装好了Oracle VM VirtualBox
准备好CentOS-7-x86_64-Minimal-1804.iso
创建两台虚拟机
每台配置双网卡
第一台设置IP地址为192.168.56.60
第二台虚拟机IP地址为192.168.56.61
centos默认host-only网卡是关闭的,打开它:
修改ONBOOT=YES
重启网卡
两台虚拟机都按如上启动网卡
安装docker
- 参考 http://www.runoob.com/docker/centos-docker-install.html
- 更新centos
yum update -y - 安装一些必要的系统工具:
yum install -y yum-utils device-mapper-persistent-data lvm2 - 添加软件源信息:
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo - 安装 Docker-ce:
yum -y install docker-ce - mkdir -p /etc/docker
- 配置国内镜像
vi /etc/docker/daemon.json
{
"registry-mirrors": ["https://registry.docker-cn.com/"]
} - 启动 Docker 后台服务
systemctl enable docker
systemctl start docker -
测试安装
docker pull busybox
docker images
[目录] (https://www.jianshu.com/p/2a935d48b6da)
spring cloud 工程创建
在github上创建配置文件
在centos7下安装docker
docker私有仓库安装
jdk git maven 安装
jenkins 安装
jenkins 之 jdk maven github 配置
jenkins 之 job构建项目
安装k8s
部署springcloud in k8s
springcloud in k8s 部署ingress - 简书