Merge remote-tracking branch 'origin/2.0.0' into quick_guide
This commit is contained in:
commit
7308e095cd
|
@ -1,14 +1,25 @@
|
|||
# 快速开始
|
||||
|
||||
### 系统要求
|
||||
建木持续集成平台作为入门可以采用本文档描述的配置进行快速体验使用。
|
||||
|
||||
推荐使用Ubuntu 21.04系统安装,如[CentOS 7可参考](https://docs.jianmu.dev/guide/centos-install.html)。
|
||||
## 系统和软件准备
|
||||
|
||||
Docker 19.30以上,[官方安装手册](https://docs.docker.com/get-started/#download-and-install-docker)
|
||||
### 资源和系统要求
|
||||
|
||||
Docker-Compose 1.29.2以上,[官方安装手册](https://docs.docker.com/compose/install/#install-compose)
|
||||
建议操作系统:Ubuntu 21.04(macOS Monterey)
|
||||
建议配置:
|
||||
* CPU:2颗
|
||||
* 内存:8GB
|
||||
* 磁盘:100GB
|
||||
|
||||
Kubernetes 1.18以上, [官方安装手册](https://kubernetes.io/docs/tasks/tools/)
|
||||
### 软件版本要求
|
||||
|
||||
* 推荐使用Ubuntu 21.04系统安装,如[CentOS 7可参考](https://docs.jianmu.dev/guide/centos-install.html)。
|
||||
* Docker 19.30以上,[官方安装手册](https://docs.docker.com/get-started/#download-and-install-docker)
|
||||
* Docker-Compose 1.29.2以上,[官方安装手册](https://docs.docker.com/compose/install/#install-compose)
|
||||
* Kubernetes 1.18以上, [官方安装手册](https://kubernetes.io/docs/tasks/tools/)
|
||||
|
||||
## 建木安装
|
||||
|
||||
### docker-compose部署
|
||||
|
||||
|
@ -24,9 +35,8 @@ wget https://gitee.com/jianmu-dev/jianmu-deploy/raw/2.0.0/docker-compose.yml
|
|||
docker-compose up -d
|
||||
```
|
||||
|
||||
访问[`http://127.0.0.1`](http://127.0.0.1)
|
||||
访问[`http://localhost`](http://localhost),默认用户名密码为`admin/123456`。
|
||||
|
||||
默认用户名密码为`admin/123456`
|
||||
|
||||
### k8s部署
|
||||
**下载`kubernetes.yaml`**
|
||||
|
@ -40,9 +50,10 @@ wget https://gitee.com/jianmu-dev/jianmu-deploy/raw/master/kubernetes.yaml
|
|||
kubectl apply -f kubernetes.yaml
|
||||
```
|
||||
|
||||
访问[`node节点ip:30180`](http://node节点ip:30180)
|
||||
访问[`node节点ip:30180`](http://node节点ip:30180),默认用户名密码为`admin/123456`,使用详见hello项目使用。
|
||||
|
||||
默认用户名密码为`admin/123456`
|
||||
|
||||
## 建木快速使用
|
||||
|
||||
### 创建第一个项目(来自建木的问候)
|
||||
|
||||
|
@ -72,3 +83,4 @@ kubectl apply -f kubernetes.yaml
|
|||
|
||||
1. 您可以点击项目立即触发执行,届时可以看到测试企业群的Bot就会给你第一个问候。
|
||||
2. 系统将会根据导入的yaml文件生成名为`hello_world`的流程并在每小时的0/30分时触发执行。
|
||||
|
||||
|
|
Loading…
Reference in New Issue