process upload

This commit is contained in:
qiaofeng1227 2023-09-08 16:35:37 +08:00
parent 23b44dad1d
commit 7becece343
7 changed files with 288 additions and 104 deletions

18
docker/w9gitea/.env Normal file
View file

@ -0,0 +1,18 @@
POWER_PASSWORD=1PrMxExC45LsCT
APP_NAME=gitea
APP_VERSION=latest
# port, APP_PORT is need at leaset
APP_HTTP_PORT=3000
APP_SSH_PORT=222
APP_NETWORK=websoft9
APP_URL_REPLACE=true
APP_URL=appname.example.com
RUN_MODE=prod
DOMAIN=$APP_URL
SSH_DOMAIN=$APP_URL
ROOT_URL=""
DISABLE_REGISTRATION=false
REQUIRE_SIGNIN_VIEW=false

View file

@ -0,0 +1,28 @@
# image: https://hub.docker.com/r/gitea/gitea
# docs: https://docs.gitea.io/zh-cn/install-with-docker
version: '3.8'
services:
gitea:
image: gitea/gitea:$APP_VERSION
container_name: $APP_NAME
environment:
- USER_UID=1000
- USER_GID=1000
restart: unless-stopped
env_file:
- .env
volumes:
- gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
ports:
- "$APP_HTTP_PORT:3000"
- "$APP_SSH_PORT:22"
networks:
default:
name: ${APP_NETWORK}
external: true

View file

@ -0,0 +1,14 @@
# redis'port is 6379
port 6379
# loglevel is notice
loglevel notice
# close protected-mode
#protected-mode no
# all ports can log in, default setting is 127.0.0.1
#bind 0.0.0.0
# set log in password
#requirepass 123456

View file

@ -0,0 +1,41 @@
#!/bin/bash
url_list=(
api.ipify.org
bot.whatismyipaddress.com
icanhazip.com
ifconfig.co
ident.me
ifconfig.me
icanhazip.com
ipecho.net/plain
ipinfo.io/ip
ip.sb
whatismyip.akamai.com
inet-ip.info
)
curl_ip(){
curl --connect-timeout 1 -m 2 $1 2>/dev/null
return $?
}
debug(){
for x in ${url_list[*]}
do
curl_ip $x
done
}
print_ip(){
for n in ${url_list[*]}
do
public_ip=`curl_ip $n`
check_ip=`echo $public_ip | awk -F"." '{print NF}'`
if [ ! -z "$public_ip" -a $check_ip -eq "4" ]; then
echo $public_ip
exit 0
fi
done
}
#debug
print_ip

View file

@ -1,4 +0,0 @@
APP_NAME=websoft9-portainer
APP_VERSION=2.19.0
APP_HTTP_PORT=9091
APP_NETWORK=websoft9

View file

@ -2,7 +2,7 @@ version: "3.8"
services:
portainer:
container_name: ${APP_NAME}
container_name: websoft9-portainer
build:
context: .
dockerfile_inline: |
@ -13,7 +13,7 @@ services:
RUN go build -o init_portainer init_portainer.go
RUN chmod +x ./init_portainer
# step2: copy build go program to portainer
FROM portainer/portainer-ce:${APP_VERSION}
FROM portainer/portainer-ce:2.19.0
COPY --from=builder /init_portainer /
entrypoint: ["/init_portainer"]
restart: unless-stopped
@ -21,11 +21,11 @@ services:
- portainer:/data
- /var/run/docker.sock:/var/run/docker.sock
ports:
- ${APP_HTTP_PORT}:9000
- 9091:9000
networks:
default:
name: ${APP_NETWORK}
name: websoft9
external: true
volumes:

View file

@ -9,12 +9,161 @@
另外还有与系统维护相关的:
- Settings
- Install
- Upgrade
- Fix
- CLI
## CI
## API
API 接口功能设计:
### app/install
功能:安装应用并自动绑定域名
输入参数:
endpointId: 安装目的地portainer中有定义默认为 local
body:
{
- app_name
- app_id
- domains[] 可选
- default_domain 可选
- edition{dist:community, version:5.0}
- 其他
}
过程:
1. CIGitea 创建 repository
2. CIGitea 准备可用的 repository
3. CD: Portainer 创建 websoft9 network (先判断是否存在)
4. CD: Portainer 基于 repository 在对应的 endpointId 中创建项目staus: [active,inactive]
5. CPNginx 为应用创建 Proxy 访问
2-4 以上步骤是有状态操作(产生对后续操作有影响的记录),故需考虑事务完整性。
### apps
查询所有apps的信息返回完整数据。等同于 CD: deploy/apps
### apps/{id}/*
对单个 apps 的增删改查:
- 查询deploy/apps/{id} with **get** method
- 启动deploy/apps/{id}/start
- 停止deploy/apps/{id}/stop
- 重启deploy/apps/{id}/restart
- 迁移deploy/apps/{id}/migrate
- 重建deploy/apps/{id}/git/redeploy + deploy/apps/{id}/restart
- 卸载:
- APP_Manage 调用 integration/,删除 Repository
- APP_Manage 调用 publish/nginx/proxy删除 Proxy
- APP_Manage 调用 deploy/apps/{id} with **delete** method删除应用
> 卸载必须是一个事务操作,确保完成所有步骤,以上先后顺序非常关键
### app/domains
App 域名的:增、删、改、查。
输入参数:
pulisherId: 默认为本地 nginx将来可扩展支持云平台的应用访问网关。
body:
{
- app_id
- domains[] 可选
- default_domain 可选
}
流程:
- CP: publish/nginx/proxy
- CI: Gitea 修改 repository 的 .env 文件中的 APP_URL 为默认域名
- CDdeploy/apps/{id}/git/redeploy + deploy/apps/{id}/restart
## Settings
配置文件可以通过接口和CLI进行更改重启服务后生效。
功能:
- settings 增删改查
```
[system]
# websoft9 install path, it can not modify now
install_path=/data/websoft9
# apps install path, it can not modify now
apps_path=/data/compose
# enable appstore preview, it use for CLI upgrade COMMAND
appstore_preview=false
[address]
# Wildcard Domain Name for application
wildcard_domain=test.websoft9.com
[smtp]
smtp_port=743
smtp_server=smtp.websoft9.com
smtp_tls/ssl=true
smtp_user=admin
smtp_password=password
[receive]
# receive the notify of system
email=help@websoft9.com
wechat=
```
## CLI
CLI 是安装到服务器的服务端命令行工具。它的功能有几种来源:
1. 继承:由 API 直接转换
2. 相关:多个 API 以及 组合
3. 无关:与 API 无关,
具体指令以及参数设计如下:
```
Usage: w9 [OPTIONS] COMMAND sub-COMMAND
Common Commands
version 查询 websoft9 版本
repair 修复 websoft9
clean 清空 websoft9 使用过程中不需要的残留资源
upgrade 检查并更新 [core|plugin], --check 只检查
uninstall 删除 Websoft9 所有服务以及组件,除了 Docker 以及 Docker 应用之外
environments list all Environments
apikey 生产以及管理 AppManage keys
App Commands:
install 安装应用
ls List 应用列表 [app_id, app_name, status, time, endpointId]
inspect 显示 APP 详细信息
start 启动一个停止的应用
stop 停止一个运行中的应用
restart 重启应用
redeploy 重建应用(包含更新镜像后重建)
delete 删除应用
Global Options:
-c, --context string
-D, --debug Enable debug mode
-e, --environment which environment you used
Run 'w9 COMMAND --help' for more information on a command.
```
## Core
### CI
CI 遵循几个法则:
@ -24,29 +173,30 @@ CI 遵循几个法则:
CI 过程中除了直接使用 [Gitea API](https://docs.gitea.cn/api/1.19/) 之外,还需增加如下业务:
### integation/repository/prepare
准备一个可用的项目:
#### integation/repository/create
1. 基于 library/apps/app_name 目录创建一个临时目录 app_id
> app_name 是软件名称例如wordpress。app_id 是用户安装的应用名称例如mywordpress
功能:
2. 根据安装输入,更改临时目录 .env 文件中的重要参数:
基于本地目录 library/apps/app_name创建一个符合 Websoft9 规范格式的 repository名称为app_id
> app_name 是软件名称例如wordpress。app_id 是用户安装的应用名称例如mywordpress
步骤:
1. 在 Gitea 中创建一个名称为 app_id 的 repository
2. 修改 Gitea repository 仓库的设置属性,只保留【代码】栏
#### integation/repository/prepare
更改临时目录 .env 文件中的重要参数:
- APP_*_PORT 值确保未被使用或将被使用
- APP_URL 用域名/公网IP替换
- POWER_PASSWORD 使用 16位 【大小写数字特殊字符】 替代
- APP_VERSION 根据安装输入参数替换
- APP_NAME 更换为 app_id
### integation/repository/create
然后 git push
创建一个符合 Websoft9 规范格式的 repository
1. 在 Gitea 中创建一个名称为 app_id 的 repository
2. 修改 Gitea repository 仓库的设置属性,只保留【代码】栏
## CD
### CD
CD 遵循几个法则:
@ -55,15 +205,15 @@ CD 遵循几个法则:
* 部署编排物料(CI 的产出物)可以是 docker-compose也可以是 helm
* 也可以支持源码编译成镜像后自动部署参考waypoint
### deploy/apps/create/standalone/repository
#### deploy/apps/create/standalone/repository
基于 repository 创建应用100% 使用 Portainer API /stacks/create/standalone/repository
### deploy/apps/{id}/git
#### deploy/apps/{id}/git
设置 portainer 与 repository 之间的连接关系100% 使用 Portainer API /stacks/{id}/git
### deploy/apps
#### deploy/apps
List all apps继承 Portainer API /stacks
@ -73,36 +223,39 @@ List all apps继承 Portainer API /stacks
> portaier 中的 repository 安装方式中,.env 并不会被 portainer 保存到接口中
2. portainer 中的应用目录的 variables.json 或 repository variables.json
3. Gitea API 列出当前 APP 的 repository 之 URL提供访问链接?
4. 所用应用的数据目录:/var/lib/docker/volumes/...
5. Portainer 通过主容器的 Label 标签和 Ports获取 app_*_port等
### deploy/apps{id}
#### deploy/apps/{id}
与 Portainer API /stacks{id} 雷同,支持 get, put, delete
与 Portainer API /stacks{id} 雷同,支持 get(查询), delete删除
### deploy/apps/{id}/git/redeploy
#### deploy/apps/{id}/git/redeploy
100% 使用 Portainer API /stacks/{id}/git/redeploy
### deploy/apps/{id}/start
#### deploy/apps/{id}/start
100% 使用 Portainer API /stacks/{id}/start
### deploy/apps/{id}/stop
#### deploy/apps/{id}/stop
100% 使用 Portainer API /stacks/{id}/stop
### deploy/apps/{id}/restart
#### deploy/apps/{id}/restart
Portainer 未提供对应的 API可以创建此操作也可以直接在前端通过 stop & start 组合实现。
### deploy/apps/{id}/migrate
#### deploy/apps/{id}/migrate
将 Docker 应用迁移到另外一台服务器上。此需求暂不实现
100% 使用 Portainer API /stacks/{id}/migrate
## CP
### CP
### publish/nginx/proxy
#### publish/nginx/proxy
function proxy(hostdomains[], Optional:port, Optional:exra_proxy.conf)
@ -141,70 +294,4 @@ enable所有相关的 proxys
**disable()**
disable 所有相关的 proxys
## App
### Install
功能:安装应用并自动绑定域名
输入参数:
- app_name
- app_id
- domains[] 可选
- default_domain 可选
- version{}
过程:
1. CIApp_Manage 准备 repository
2. CIGitea 创建 repository
3. CD: Portainer 基于 repository 创建项目staus: [active,inactive]
4. CPNginx 为应用创建 Proxy 访问
以上步骤是有状态操作(产生对后续操作有影响的记录),故需考虑事务完整性。
### Lists
### Manage
#### Uninstall
- App_Manage API 接受输入并接受语法检查app_id
- APP_Manage 后端调用 Gitea API删除 Repository
- APP_Manage 后端调用 Nginx API删除 Proxy
- APP_Manage 后端调用 Portainer API删除应用
> 卸载必须是一个事务操作,确保完成所有步骤,以上先后顺序非常关键
#### Stop
APP_Manage 后端调用 Portainer API 的 stop
#### Start
APP_Manage 后端调用 Portainer API 的 start
#### Restart
APP_Manage 后端调用 Portainer API 的 [stop + start]
#### Modify
Gitea API 列出当前 APP 的 repository 之 URL提供访问链接
#### Redeploy
- APP_Manage 后端调用 Portainer API 的 redeploy
## Settings
## Upgrade
## CLI
disable 所有相关的 proxys