deployment trouble shooting

This commit is contained in:
huanqing.shao
2019-12-10 14:34:00 +08:00
parent c17ca114a5
commit 01db392e09
36 changed files with 813 additions and 4 deletions

View File

@ -36,14 +36,14 @@ meta:
:::
``` sh
wget https://github.com/fanux/sealos/releases/download/v2.0.7/sealos \
wget https://github.com/fanux/sealos/releases/download/v3.0.1/sealos \
&& chmod +x sealos && mv sealos /usr/bin
# 请修改 passwd、master、node 这几个参数
sealos init --passwd 123456 \
--master 192.168.0.2 --master 192.168.0.3 --master 192.168.0.4 \
--node 192.168.0.5 \
--pkg-url https://sealyun.oss-cn-beijing.aliyuncs.com/37374d999dbadb788ef0461844a70151-1.16.0/kube1.16.0.tar.gz \
--version v1.16.0
--pkg-url https://sealyun.oss-cn-beijing.aliyuncs.com/413bd3624b2fb9e466601594b4f72072-1.17.0/kube1.17.0.tar.gz \
--version v1.17.0
```
### 参数含义
@ -54,6 +54,6 @@ passwd|服务器密码|123456
master|k8s master节点IP地址| 192.168.0.2
node|k8s node节点IP地址|192.168.0.5
pkg-url|离线资源包地址,支持下载到本地,或者一个远程地址|/root/kube1.16.0.tar.gz
version|资源包对应的版本|v1.16.0
version|资源包对应的版本|v1.17.0
[了解一下这是怎么做到的](https://github.com/fanux/sealos)