Kubernetes 安裝

下圖是一個基本的Kubernetes 安裝部署圖侨艾。


圖片.png

由于資源限制,我只選了兩個虛擬機(jī)來嘗試拓挥。
Master: 192.168.59.131
Minion: 192.168.59.130

  1. 準(zhǔn)備工作:

[root@localhost ~]# systemctl stop firewalld
[root@localhost ~]# systemctl disable firewalld
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
Removed symlink /etc/systemd/system/basic.target.wants/firewalld.service.

[root@localhost ~]# yum -y install ntp
Loaded plugins: fastestmirror, langpacks
base | 3.6 kB 00:00:00
extras | 3.4 kB 00:00:00
updates | 3.4 kB 00:00:00
Loading mirror speeds from cached hostfile

  • base: mirrors.163.com
  • extras: mirrors.163.com
  • updates: mirrors.nwsuaf.edu.cn
    Package ntp-4.2.6p5-25.el7.centos.2.x86_64 already installed and latest version
    Nothing to do
    [root@localhost ~]# systemctl start ntpd
    [root@localhost ~]# systemctl enable ntpd
    Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd.service.

yum update -y

  1. 安裝Master:
    etcd Kubernetes

yum -y install etcd kubernetes flannel

配置etcd
[root@localhost ~]# egrep -v "#|$" /etc/etcd/etcd.conf
ETCD_NAME=default
ETCD_DATA_DIR="/var/lib/etcd/default.etcd"
ETCD_LISTEN_CLIENT_URLS="http://0.0.0.0:2379"
ETCD_ADVERTISE_CLIENT_URLS="http://0.0.0.0:2379"
配置k8s api
[root@localhost ~]# egrep -v "#|$" /etc/kubernetes/apiserver
KUBE_API_ADDRESS="--insecure-bind-address=0.0.0.0"
KUBE_ETCD_SERVERS="--etcd-servers=http://127.0.0.1:2379"
KUBE_SERVICE_ADDRESSES="--service-cluster-ip-range=10.254.0.0/16"
KUBE_ADMISSION_CONTROL="--admission-control=NamespaceLifecycle,NamespaceExists,LimitRanger,SecurityContextDeny,ServiceAccount,ResourceQuota"
KUBE_API_ARGS=""
配置flannel網(wǎng)絡(luò)
[root@localhost ~]# egrep -v "#|$" /etc/sysconfig/flanneld
FLANNEL_ETCD_ENDPOINTS="http://localhost:2379"
FLANNEL_ETCD_PREFIX="/coreos.com/network"

啟動etcd k8s服務(wù)

for SERVICES in etcd kube-apiserver kube-controller-manager kube-scheduler flanneld; do
systemctl restart $SERVICES
systemctl enable $SERVICES
systemctl status $SERVICES
done

定義flannel network

[root@localhost ~]# etcdctl mk /coreos.com/network/config '{"Network":"172.17.0.0/16"}'

  1. 安裝配置Kubernetes Minions (Nodes節(jié)點都執(zhí)行一遍)

yum -y install flannel kubernetes

配置/etc/sysconfig/flanneld
[root@localhost pods]# egrep -v "#|$" /etc/sysconfig/flanneld
FLANNEL_ETCD_ENDPOINTS="http://192.168.59.131:2379"
FLANNEL_ETCD_PREFIX="/coreos.com/network"

配置k8s /etc/kubernetes/config
[root@localhost pods]# egrep -v "#|$" /etc/kubernetes/config
KUBE_LOGTOSTDERR="--logtostderr=true"
KUBE_LOG_LEVEL="--v=0"
KUBE_ALLOW_PRIV="--allow-privileged=false"
KUBE_MASTER="--master=http://192.168.59.131:8080"

配置kubelet服務(wù) /etc/kubernetes/kubelet
[root@localhost pods]# egrep -v "#|$" /etc/kubernetes/kubelet
KUBELET_ADDRESS="--address=0.0.0.0"
KUBELET_HOSTNAME="--hostname-override=192.168.59.130"
KUBELET_API_SERVER="--api-servers=http://192.168.59.131:8080"
KUBELET_POD_INFRA_CONTAINER="--pod-infra-container-image=registry.access.redhat.com/rhel7/pod-infrastructure:latest"
KUBELET_ARGS=""

啟動服務(wù)

for SERVICES in kube-proxy kubelet docker flanneld; do
systemctl restart $SERVICES
systemctl enable $SERVICES
systemctl status $SERVICES
done

  1. 完成后檢查
    查看每個k8s node上的iflannel ip
    [root@localhost pods]# ip a |grep flannel|grep inet
    inet 172.17.9.0/16 scope global flannel0

[root@localhost pods]# ip a |grep flannel|grep inet
inet 172.17.58.0/16 scope global flannel0

查詢相關(guān)節(jié)點
[root@localhost pods]# kubectl get nodes
NAME STATUS AGE
192.168.59.130 Ready 21h
[root@localhost pods]# kubectl get nodes -s http://192.168.59.131:8080
NAME STATUS AGE
192.168.59.130 Ready 22h

  1. 創(chuàng)建pod測試
    創(chuàng)建配置文件:
[root@localhost pods]# cat nginx.yaml
apiVersion: v1
kind: Service
metadata:
  name: my-nginx-svc
  labels:
    app: nginx
spec:
  type: LoadBalancer
  ports:
  - port: 80
  selector:
    app: nginx
---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
  name: my-nginx
spec:
  replicas: 3
  template:
    metadata:
      labels:
        app: nginx
    spec:
      containers:
      - name: nginx
        image: nginx:1.7.9
        ports:
        - containerPort: 80

kubectl create -f nginx.yaml -s http://192.168.59.131:8080
[root@localhost pods]# kubectl get pods -l app=nginx -s http://192.168.59.131:8080
NAME READY STATUS RESTARTS AGE
my-nginx-4087004473-mv2bl 1/1 Running 0 21h
my-nginx-4087004473-n5sz9 1/1 Running 0 21h
my-nginx-4087004473-zxj7g 1/1 Running 0 21h

[root@localhost pods]# kubectl get services -s http://192.168.59.131:8080
NAME CLUSTER-IP EXTERNAL-IP PORT(S) AGE
kubernetes 10.254.0.1 <none> 443/TCP 6d
my-nginx-svc 10.254.222.14 <pending> 80:32660/TCP 21h
[root@localhost pods]# kubectl describe services -s http://192.168.59.131:8080
Name: kubernetes
Namespace: default
Labels: component=apiserver
provider=kubernetes
Selector: <none>
Type: ClusterIP
IP: 10.254.0.1
Port: https 443/TCP
Endpoints: 192.168.59.131:6443
Session Affinity: ClientIP
No events.

Name: my-nginx-svc
Namespace: default
Labels: app=nginx
Selector: app=nginx
Type: LoadBalancer
IP: 10.254.222.14
Port: <unset> 80/TCP
NodePort: <unset> 32660/TCP
Endpoints: 172.17.58.11:80,172.17.58.8:80,172.17.58.9:80
Session Affinity: None
No events.

  1. 問題與解決
    route add default gw 192.168.42.1
    不錯的Blog:
    http://blog.csdn.net/linshenyuan1213/article/details/53304276
    http://www.cnblogs.com/ivictor/p/4998032.html
    http://blog.chinaunix.net/uid-25057421-id-5759696.html
    http://www.cnblogs.com/fengjian2016/p/6392900.html
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末唠梨,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子侥啤,更是在濱河造成了極大的恐慌当叭,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,113評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件愿棋,死亡現(xiàn)場離奇詭異科展,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)糠雨,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,644評論 2 381
  • 文/潘曉璐 我一進(jìn)店門才睹,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人甘邀,你說我怎么就攤上這事琅攘。” “怎么了松邪?”我有些...
    開封第一講書人閱讀 153,340評論 0 344
  • 文/不壞的土叔 我叫張陵坞琴,是天一觀的道長。 經(jīng)常有香客問我逗抑,道長剧辐,這世上最難降的妖魔是什么寒亥? 我笑而不...
    開封第一講書人閱讀 55,449評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮荧关,結(jié)果婚禮上溉奕,老公的妹妹穿的比我還像新娘。我一直安慰自己忍啤,他們只是感情好加勤,可當(dāng)我...
    茶點故事閱讀 64,445評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著同波,像睡著了一般鳄梅。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上未檩,一...
    開封第一講書人閱讀 49,166評論 1 284
  • 那天戴尸,我揣著相機(jī)與錄音,去河邊找鬼讹挎。 笑死校赤,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的筒溃。 我是一名探鬼主播马篮,決...
    沈念sama閱讀 38,442評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼怜奖!你這毒婦竟也來了浑测?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,105評論 0 261
  • 序言:老撾萬榮一對情侶失蹤歪玲,失蹤者是張志新(化名)和其女友劉穎迁央,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體滥崩,經(jīng)...
    沈念sama閱讀 43,601評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡岖圈,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,066評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了钙皮。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片蜂科。...
    茶點故事閱讀 38,161評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖短条,靈堂內(nèi)的尸體忽然破棺而出导匣,到底是詐尸還是另有隱情,我是刑警寧澤茸时,帶...
    沈念sama閱讀 33,792評論 4 323
  • 正文 年R本政府宣布贡定,位于F島的核電站,受9級特大地震影響可都,放射性物質(zhì)發(fā)生泄漏缓待。R本人自食惡果不足惜蚓耽,卻給世界環(huán)境...
    茶點故事閱讀 39,351評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望命斧。 院中可真熱鬧田晚,春花似錦嘱兼、人聲如沸国葬。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,352評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽汇四。三九已至,卻和暖如春踢涌,著一層夾襖步出監(jiān)牢的瞬間通孽,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,584評論 1 261
  • 我被黑心中介騙來泰國打工睁壁, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留背苦,地道東北人。 一個月前我還...
    沈念sama閱讀 45,618評論 2 355
  • 正文 我出身青樓潘明,卻偏偏與公主長得像行剂,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子钳降,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,916評論 2 344

推薦閱讀更多精彩內(nèi)容