码迷,mamicode.com
首页 > 其他好文 > 详细

k8s开发环境

时间:2018-01-07 14:03:15      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:class   user   arc   k8s   ber   upd   file   target   targe   

K8s需要一些依赖。 参看官方文档

https://github.com/kubernetes/community/blob/master/contributors/devel/running-locally.md

1. 需要安装 linux

 

2. 安装docker

wget -O- https://get.docker.com/ |bash
sudo usermod -aG docker $USER

 

3. 安装etcd

hack/install-etcd.sh  # Installs in ./third_party/etcd
echo export PATH="\$PATH:$(pwd)/third_party/etcd" >> ~/.profile  # Add to PATH

 

4. 安装go

sudo add-apt-repository ppa:gophers/archive
sudo apt update
sudo apt-get install golang-1.9-go
 
echo "export PATH=\$PATH:/usr/lib/go-1.9/bin" >> ~/.profile
source ~/.profile

 

5. 安装 openssl

 

6. 安装 CFSSL

go get -u github.com/cloudflare/cfssl/cmd/...
PATH=$PATH:$GOPATH/bin

 

7. 下载源码

git clone --depth=1 https://github.com/kubernetes/kubernetes.git



8. 编译安装k8s

cd kubernetes

hack/local-up-cluster.sh

 

 

=============================

参考文档:

https://kubernetes.io/

开发者主要看看: Community 和 Documentation

k8s开发环境

标签:class   user   arc   k8s   ber   upd   file   target   targe   

原文地址:https://www.cnblogs.com/shaohef/p/8227637.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!