2017年5月23日星期二

OpenShift_077:离线安装 OCP 3.5 之 环境准备 之 操作系统配置

1. 设置主机域名(在所有机器上分别操作)
hostnamectl set-hostname master.example.com(在 Master 机器上操作)
hostnamectl set-hostname registry.example.com(在 Registry 机器上操作)
hostnamectl set-hostname node1.example.com(在 Node1 机器上操作)
hostnamectl set-hostname node2.example.com(在 Node2 机器上操作)

2. 安装软件包(在所有机器上操作)
yum -y install wget git net-tools bind-utils iptables-services bridge-utils bash-completion vim lrzsz unzip;
yum -y update;
yum -y install atomic-openshift-utils;

3. 安装配置 Docker(在所有机器上操作)
yum -y install docker;
systemctl enable docker;
cp /etc/sysconfig/docker /etc/sysconfig/docker.bak.$(date "+%Y%m%d%H%M%S");
sed  -i s/".*OPTIONS=.*"/"OPTIONS='--selinux-enabled --insecure-registry 172.30.0.0\/16 --insecure-registry registry.example.com:5000'"/g /etc/sysconfig/docker;
sed -i 's/registry.access.redhat.com/registry.example.com:5000/g' /etc/sysconfig/docker;
docker-storage-setup;
输出如下:
ERROR: There is not enough free space in volume group rhel to create data volume of size MIN_DATA_SIZE=2G.

确认 SELinux 为 Enforcing 状态
getenforce;

4. 重启(在所有机器上操作)
reboot;

没有评论: