openshift origin multi-master manually deployment part-5
8,deply route and docker registry service. deploy a router, running on three master nodes oadm policy add-scc-to-user hostnetwork -z router oadm router router –replicas=3 –selector=’region=infra’ \ –service-account=router deploy docker registry running on node1, on […]
Read moreopenshift origin multi-master manually deployment part-4
7, setup node service, we install node service on all nodes, including master nodes. yum install -y centos-release-openshift-origin yum install -y origin-node origin-pod origin-sdn-ovs origin-dockerregistry vi /etc/sysctl.conf net.ipv4.ip_forward = 1 sysctl -p
Read moreopenshift origin multi-master manually deployment part-3
6, install and cofigure etcd cluster, on all master nodes yum install -y etcd configure etcd, comment out all default configuration entries, and add contents below. vi /etc/etcd/etcd.conf ETCD_NAME=master1.openshift.qyos.com ETCD_LISTEN_PEER_URLS=https://192.168.2.206:2380 ETCD_DATA_DIR=/var/lib/etcd/ #ETCD_SNAPSHOT_COUNTER=10000 ETCD_HEARTBEAT_INTERVAL=500 ETCD_ELECTION_TIMEOUT=2500 […]
Read moreopenshift origin multi-master manually deployment part-2
5, install origin master service, on all master yum install -y centos-release-openshift-origin yum install -y origin-master bash-completion create origin-master-api systemd file vi /usr/lib/systemd/system/origin-master-api.service [Unit] Description=Atomic OpenShift Master API Documentation=https://github.com/openshift/origin After=network-online.target After=etcd.service Before=origin-node.service Requires=network-online.target [Service] […]
Read moreopenshift origin multi-master manually deployment part-1
i have deployed an openshift origin muliti-master cluster successfully on centos and suse enterprise server. Since the deployment is done manually, i will describe it in detail as possibly as i can. first, take […]
Read more