刘伟 发表于 2018-1-4 16:31:57

Centos7搭建kubernetes搭建

/etc/kubernetes/config  # logging to stderr means we get it in the systemd journal
  KUBE_LOGTOSTDERR="--logtostderr=true"
  # journal message level, 0 is debug
  KUBE_LOG_LEVEL="--v=0"
  # Should this cluster be allowed to run privileged docker containers
  KUBE_ALLOW_PRIV="--allow-privileged=false"
  # How the replication controller and scheduler find the kube-apiserver
  KUBE_MASTER="--master=http://${MASTER_IP}:8080"
  EOF
  setenforce 0
  #systemctl disable iptables-services firewalld
  #systemctl stop iptables-services firewalld
  echo "================= config etcd======================"
  sed -i s#'ETCD_LISTEN_CLIENT_URLS="http://localhost:2379"'#'ETCD_LISTEN_CLIENT_URLS="http://0.0.0.0:2379"'#g /etc/etcd/etcd.conf
  sed -i s#'ETCD_ADVERTISE_CLIENT_URLS="http://localhost:2379"'#'ETCD_ADVERTISE_CLIENT_URLS="http://0.0.0.0:2379"'#g /etc/etcd/etcd.conf
  echo "================= config apiserver==================="
  mv /etc/kubernetes/apiserver /etc/kubernetes/apiserver.bak
  cat
页: [1]
查看完整版本: Centos7搭建kubernetes搭建