Browse Source

Merge branch 'dev' of https://gitlink.org.cn/ci4s/ci4sManagement-cloud into dev

dev-restore_mount
fanshuai 1 year ago
parent
commit
c158ff2e25
57 changed files with 2137 additions and 1547 deletions
  1. +4
    -1
      .gitignore
  2. +84
    -0
      k8s/10nexus3/nexus-deploy.yaml
  3. +13
    -0
      k8s/10nexus3/nexus-pvc.yaml
  4. +27
    -0
      k8s/build-java.sh
  5. +21
    -0
      k8s/build-node.sh
  6. +154
    -0
      k8s/build.sh
  7. +74
    -0
      k8s/build_and_deploy.sh
  8. +13
    -0
      k8s/clusterrolebinding.yaml
  9. +162
    -0
      k8s/deploy.sh
  10. +2
    -1
      k8s/dockerfiles/auth-dockerfile
  11. +8
    -8
      k8s/dockerfiles/buildimage.sh
  12. +26
    -7
      k8s/dockerfiles/conf/nginx.conf
  13. +2
    -1
      k8s/dockerfiles/file-dockerfile
  14. +2
    -1
      k8s/dockerfiles/gateway-dockerfile
  15. +2
    -1
      k8s/dockerfiles/gen-dockerfile
  16. +2
    -1
      k8s/dockerfiles/job-dockerfile
  17. +2
    -1
      k8s/dockerfiles/managent-dockerfile
  18. +2
    -1
      k8s/dockerfiles/nginx-dockerfile
  19. +2
    -1
      k8s/dockerfiles/system-dockerfile
  20. +2
    -1
      k8s/dockerfiles/visual-dockerfile
  21. +2
    -2
      k8s/helm-1mysql/values.yaml
  22. +1
    -1
      k8s/helm-2redis-ha/templates/redis-haproxy-deployment.yaml
  23. +2
    -2
      k8s/helm-2redis-ha/values.yaml
  24. +7
    -6
      k8s/k8s-12front.yaml
  25. +3
    -3
      k8s/k8s-3nacos.yaml
  26. +3
    -3
      k8s/k8s-4gateway.yaml
  27. +3
    -3
      k8s/k8s-5auth.yaml
  28. +3
    -3
      k8s/k8s-6system.yaml
  29. +5
    -5
      k8s/k8s-7management.yaml
  30. +54
    -0
      k8s/nginx.conf
  31. +36
    -0
      k8s/template-yaml/deploy/k8s-12front.yaml
  32. +36
    -0
      k8s/template-yaml/deploy/k8s-7management.yaml
  33. +36
    -0
      k8s/template-yaml/k8s-10gen.yaml
  34. +36
    -0
      k8s/template-yaml/k8s-11visual.yaml
  35. +36
    -0
      k8s/template-yaml/k8s-12front.yaml
  36. +62
    -0
      k8s/template-yaml/k8s-3nacos.yaml
  37. +36
    -0
      k8s/template-yaml/k8s-4gateway.yaml
  38. +36
    -0
      k8s/template-yaml/k8s-5auth.yaml
  39. +36
    -0
      k8s/template-yaml/k8s-6system.yaml
  40. +36
    -0
      k8s/template-yaml/k8s-7management.yaml
  41. +36
    -0
      k8s/template-yaml/k8s-8file.yaml
  42. +36
    -0
      k8s/template-yaml/k8s-9job.yaml
  43. +11
    -4
      ruoyi-auth/src/main/resources/bootstrap.yml
  44. +6
    -4
      ruoyi-gateway/src/main/resources/bootstrap.yml
  45. +1
    -1
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/DatasetServiceImpl.java
  46. +3
    -2
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/JupyterServiceImpl.java
  47. +3
    -3
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/utils/K8sClientUtil.java
  48. +4
    -2
      ruoyi-modules/management-platform/src/main/resources/bootstrap.yml
  49. +5
    -3
      ruoyi-modules/ruoyi-file/src/main/resources/bootstrap.yml
  50. +5
    -3
      ruoyi-modules/ruoyi-gen/src/main/resources/bootstrap.yml
  51. +5
    -3
      ruoyi-modules/ruoyi-job/src/main/resources/bootstrap.yml
  52. +5
    -3
      ruoyi-modules/ruoyi-system/src/main/resources/bootstrap.yml
  53. +5
    -3
      ruoyi-visual/ruoyi-monitor/src/main/resources/bootstrap.yml
  54. +317
    -0
      sql/nacos-ci4s-config.sql
  55. +0
    -248
      sql/nacos-ci4s-config_2-240104.sql
  56. +622
    -337
      sql/ry-ci4s.sql
  57. +0
    -878
      sql/ry-ci4s_20240104.sql

+ 4
- 1
.gitignore View File

@@ -51,4 +51,7 @@ mvnw.cmd
mvnw

# Files or folders need to be retained
# ...
# ...
/k8s/template-yaml/deploy/
/k8s/dockerfiles/html/
/k8s/dockerfiles/jar

+ 84
- 0
k8s/10nexus3/nexus-deploy.yaml View File

@@ -0,0 +1,84 @@
# cat nexus3/nexus3.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
k8s-app: ci4s-nexus3
name: ci4s-nexus3
namespace: ci4s-test
spec:
replicas: 1
selector:
matchLabels:
k8s-app: ci4s-nexus3
template:
metadata:
labels:
k8s-app: ci4s-nexus3
name: ci4s-nexus3
namespace: ci4s-test
spec:
containers:
- name: ci4s-nexus3
image: sonatype/nexus3:3.29.2
imagePullPolicy: IfNotPresent
env:
- name: http_proxy
value: http://172.20.32.253:3128
- name: https_proxy
value: http://172.20.32.253:3128
ports:
- containerPort: 8081
name: web
protocol: TCP
livenessProbe:
httpGet:
path: /
port: 8081
initialDelaySeconds: 540
periodSeconds: 30
failureThreshold: 6
readinessProbe:
httpGet:
path: /
port: 8081
initialDelaySeconds: 540
periodSeconds: 30
failureThreshold: 6
# resources:
# limits:
# cpu: 1000m
# memory: 2Gi
# requests:
# cpu: 500m
# memory: 512Mi
volumeMounts:
- name: nexus-data
mountPath: /nexus-data
volumes:
- name: nexus-data
persistentVolumeClaim:
claimName: ci4s-nexus-data-pvc
---
apiVersion: v1
kind: Service
metadata:
name: nexus3
namespace: ci4s-test
labels:
k8s-app: nexus3
spec:
selector:
k8s-app: nexus3
type: NodePort
ports:
- name: web
protocol: TCP
port: 8081
targetPort: 8081
nodePort: 31211
- name: dockerpod
protocol: TCP
port: 8082
targetPort: 8082
nodePort: 31212

+ 13
- 0
k8s/10nexus3/nexus-pvc.yaml View File

@@ -0,0 +1,13 @@
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: ci4s-nexus-data-pvc
namespace: ci4s-test
spec:
accessModes:
- ReadWriteMany
storageClassName: "storage-nfs"
resources:
requests:
storage: 500Gi

+ 27
- 0
k8s/build-java.sh View File

@@ -0,0 +1,27 @@
#!/bin/bash

baseDir="/home/somuns/ci4s"


#判断$1是否为all,如果是,则编译所有模块,否则只编译management-platform模块
if [ "$1" == "all" ]; then
buildDir=$baseDir
else
buildDir="$baseDir/ruoyi-modules/management-platform"
fi

echo "Building $buildDir"
cd $buildDir && mvn clean install

if [ $? -ne 0 ]; then
echo "Failed to build ruoyi-modules"
exit 1
fi









+ 21
- 0
k8s/build-node.sh View File

@@ -0,0 +1,21 @@
#!/bin/bash

baseDir="/home/somuns/ci4s"
cd ${baseDir}/react-ui

npm install

if [ $? -ne 0 ]; then
echo "Failed to install npm depend package"
exit 1
fi


npm run build
if [ $? -ne 0 ]; then
echo "Failed to build react-ui"
exit 1
fi




+ 154
- 0
k8s/build.sh View File

@@ -0,0 +1,154 @@
#!/bin/bash

#记录开始时间
start=$(date +%s)

# 默认参数
branch="master"
service="manage-front"


show_help() {
echo "Usage: $0 [-b branch] [-s service]"
echo
echo "Options:"
echo " -b Branch to deploy, default is master"
echo " -s Service to deploy (manage-front, manage, front, all, default is manage-front)"
echo " -h Show this help message"
}

# 解析命令行选项
while getopts "b:s:h" opt; do
case $opt in
b) branch=$OPTARG ;;
s) service=$OPTARG ;;
h) show_help; exit 0 ;;
\?) echo "Invalid option -$OPTARG" >&2; show_help; exit 1 ;;
esac
done

echo "branch: $branch"
echo "service: $service"

valid_services=("manage-front" "manage" "front" "all")
if [[ ! " ${valid_services[@]} " =~ " $service " ]]; then
echo "Invalid service name: $service" >&2
echo "Valid services are: ${valid_services[*]}"
exit 1
fi

# 登录到目标环境
baseDir="/home/somuns/ci4s"
cd ${baseDir}

# 拉取指定分支的最新代码
echo "Checking out and pulling branch $branch..."

git stash
git checkout $branch
if [ $? -ne 0 ]; then
echo "切换到分支 $branch 失败,请检查分支名称是否正确!"
exit 1
fi

git stash
git pull origin $branch
if [ $? -ne 0 ]; then
echo "拉取代码失败,请检查网络或联系管理员!"
exit 1
fi

chmod +777 ${baseDir}/k8s/*.sh

# 创建目录
mkdir -p ${baseDir}/k8s/dockerfiles/jar
mkdir -p ${baseDir}/k8s/dockerfiles/html

compile_front() {
# 清理前端构建文件
if [ -d "${baseDir}/react-ui/dist" ]; then
rm -rf ${baseDir}/react-ui/dist
fi

# 编译前端
docker run -v ${baseDir}:${baseDir} \
-e http_proxy=http://172.20.32.253:3128 -e https_proxy=http://172.20.32.253:3128 \
172.20.32.187/ci4s/node:16.16.0 ${baseDir}/k8s/build-node.sh
if [ $? -ne 0 ]; then
echo "编译失败,请检查代码!"
exit 1
fi

# 复制前端文件
cp -rf ${baseDir}/react-ui/dist/ ${baseDir}/k8s/dockerfiles/html
if [ $? -ne 0 ]; then
echo "复制html文件失败,请检查代码!"
exit 1
fi
}

compile_java() {
param=$1
# 编译java
docker run -v ${baseDir}:${baseDir} -v /home/maven:/home/maven \
-e http_proxy=http://172.20.32.253:3128 -e https_proxy=http://172.20.32.253:3128 \
172.20.32.187/ci4s/build:v1 ${baseDir}/k8s/build-java.sh $param
if [ $? -ne 0 ]; then
echo "编译失败,请检查代码!"
exit 1
fi

# 复制jar包
cp -rf ${baseDir}/ruoyi-modules/management-platform/target/management-platform.jar ${baseDir}/k8s/dockerfiles/jar/management-platform.jar
if [ $? -ne 0 ]; then
echo "复制jar包失败,请检查代码!"
exit 1
fi

if [ "$param" == "all" ]; then
cp -rf ${baseDir}/ruoyi-modules/ruoyi-system/target/ruoyi-modules-system.jar ${baseDir}/k8s/dockerfiles/jar/ruoyi-modules-system.jar
if [ $? -ne 0 ]; then
echo "复制jar包失败,请检查代码!"
exit 1
fi

cp -rf ${baseDir}/ruoyi-auth/target/ruoyi-auth.jar ${baseDir}/k8s/dockerfiles/jar/ruoyi-auth.jar
if [ $? -ne 0 ]; then
echo "复制jar包失败,请检查代码!"
exit 1
fi

cp -rf ${baseDir}/ruoyi-gateway/target/ruoyi-gateway.jar ${baseDir}/k8s/dockerfiles/jar/ruoyi-gateway.jar
if [ $? -ne 0 ]; then
echo "复制jar包失败,请检查代码!"
exit 1
fi
fi
}

if [ "$service" == "manage-front" ] || [ "$service" == "front" ]; then
# 编译前端
compile_front
fi


if [ "$service" == "manage-front" ] || [ "$service" == "manage" ]; then
# 编译java
compile_java $service
fi

if [ "$service" == "all" ]; then
# 编译前端
# compile_front

# 编译java
compile_java "all"
fi


# 记录结束时间
end=$(date +%s)

#计算运行时间
runtime=$((end-start))
echo "编译成功,耗时:$runtime 秒"

+ 74
- 0
k8s/build_and_deploy.sh View File

@@ -0,0 +1,74 @@
#!/bin/bash

#记录开始时间
startTime=$(date +%s)

# 登录到目标环境
baseDir="/home/somuns/ci4s"
cd ${baseDir}


#build
# 默认参数
branch="master"
service="manage-front"
env="dev"

#
show_help() {
echo "Usage: $0 [-b branch] [-s service] [-e environment]"
echo
echo "Options:"
echo " -b Branch to deploy, default: master"
echo " -s Service to deploy (manage-front, manage, front, all, default: manage-front)"
echo " -e Environment (e.g., dev, test, default: dev)"
echo " -h Show this help message"
}

# 解析命令行选项
while getopts "b:s:e:h" opt; do
case $opt in
b) branch=$OPTARG ;;
s) service=$OPTARG ;;
e) env=$OPTARG ;;
h) show_help; exit 0 ;;
\?) echo "Invalid option -$OPTARG" >&2; show_help; exit 1 ;;
esac
done

valid_services=("manage-front" "manage" "front" "all")
if [[ ! " ${valid_services[@]} " =~ " $service " ]]; then
echo "Invalid service name: $service" >&2
echo "Valid services are: ${valid_services[*]}"
exit 1
fi

valid_envs=("dev" "test")
if [[ ! " ${valid_envs[@]} " =~ " $env " ]]; then
echo "Invalid environment: $env" >&2
echo "Valid environments are: ${valid_envs[*]}"
exit 1
fi

echo "start build"
sh ${baseDir}/k8s/build.sh -b ${branch} -s ${service}
if [ $? -ne 0 ]; then
echo "Build failed"
exit 1
fi
echo "build success"

# 部署
echo "start deploy"
sh ${baseDir}/k8s/deploy.sh -s ${service} -e ${env}
if [ $? -ne 0 ]; then
echo "Deploy failed"
exit 1
fi
echo "deploy success"

# 记录结束时间
endTime=$(date +%s)
# 计算运行时间
duration=$(( $endTime - $startTime ))
echo "编译发布总耗时: $duration 秒"

+ 13
- 0
k8s/clusterrolebinding.yaml View File

@@ -0,0 +1,13 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: admin-service-account-binding
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: cluster-admin
subjects:
- kind: ServiceAccount
name: admin-service-account
namespace: default


+ 162
- 0
k8s/deploy.sh View File

@@ -0,0 +1,162 @@
#!/bin/bash

# 记录开始时间
start=$(date +%s)
# 默认参数
service="manage-front"
env="dev"

show_help() {
echo "Usage: $0 [-s service] [-e environment]"
echo
echo "Options:"
echo " -s Service to deploy (manage-front, manage, front, all default: manage-front)"
echo " -e Environment (e.g., dev, test, default: dev)"
echo " -h Show this help message"
}

# 解析命令行参数
while getopts "s:e:h" opt; do
case $opt in
s) service=$OPTARG ;;
e) env=$OPTARG ;;
h) show_help; exit 0 ;;
\?) echo "Invalid option -$OPTARG" >&2; exit 1 ;;
esac
done

echo "Deploy service: $service, environment: $env"

valid_services=("manage-front" "manage" "front" "all")
if [[ ! " ${valid_services[@]} " =~ " $service " ]]; then
echo "Invalid service name: $service" >&2
echo "Valid services are: ${valid_services[*]}"
exit 1
fi

valid_envs=("dev" "test")
if [[ ! " ${valid_envs[@]} " =~ " $env " ]]; then
echo "Invalid environment: $env" >&2
echo "Valid environments are: ${valid_envs[*]}"
exit 1
fi

# 根据环境设置 IP 地址
if [ "$env" == "dev" ]; then
remote_ip="172.20.32.181"
elif [ "$env" == "test" ]; then
remote_ip="172.20.32.185"
else
echo "Invalid environment - $env"
exit 1
fi

baseDir=/home/somuns/ci4s
tag=$(date +'%Y%m%d%H%M')
remote_deploy_dir=/home/deploy/manage-platform

# 构建镜像函数
build_image() {
local dockerfile=$1
local image=$2
cd ${baseDir}/k8s/dockerfiles
docker build -t ${image} -f ${dockerfile} .
if [ $? -ne 0 ]; then
echo "Build ${image} image fail"
exit 1
fi
docker push ${image}
}

# 复制和替换 YAML 文件函数
prepare_yaml() {
local yaml_file=$1
local image=$2

placeholder="\${${yaml_file%.yaml}-image}"
cd ${baseDir}/k8s/template-yaml
cp -rf ${yaml_file} deploy/
cd deploy/
sed -i "s|${placeholder}|${image}|g" ${yaml_file}
if [ $? -ne 0 ]; then
echo "Replace ${image} image fail"
exit 1
fi

# 建立远程目录并备份文件
ssh root@$remote_ip "mkdir -p ${remote_deploy_dir} && if [ -f ${remote_deploy_dir}/${yaml_file} ]; then mv ${remote_deploy_dir}/${yaml_file} ${remote_deploy_dir}/${yaml_file}.bak; fi"
if [ $? -ne 0 ]; then
echo "Failed to create remote directory or backup ${yaml_file}"
exit 1
else
echo "Successfully created remote directory and backup ${yaml_file}"
fi

scp ${baseDir}/k8s/template-yaml/deploy/${yaml_file} root@$remote_ip:${remote_deploy_dir}/${yaml_file}
if [ $? -ne 0 ]; then
echo "Failed to copy ${yaml_file}"
exit 1
else
echo "Successfully copied ${yaml_file}"
fi
}

# 部署服务函数
deploy_service() {
local yaml_file=$1
ssh root@$remote_ip "kubectl apply -n argo -f ${remote_deploy_dir}/${yaml_file}"
if [ $? -ne 0 ]; then
echo "Failed to deploy ${yaml_file}"
exit 1
else
echo "Successfully deployed ${yaml_file}"
fi
}

deploy_nacos() {
local yaml_file=$1
scp ${baseDir}/k8s/${yaml_file} root@$remote_ip:${remote_deploy_dir}/${yaml_file}
deploy_service ${yaml_file}
}

build_and_deploy() {
local dockerfile=$1
local image=$2
local yaml_file=$3

build_image ${dockerfile} ${image}
prepare_yaml ${yaml_file} ${image}
deploy_service ${yaml_file}
}

# 构建和部署 manage 服务
if [ "$service" == "manage-front" ] || [ "$service" == "manage" ]; then
build_and_deploy "managent-dockerfile" "172.20.32.187/ci4s/ci4s-managent:${tag}" "k8s-7management.yaml"
fi


# 构建和部署 front 服务
if [ "$service" == "manage-front" ] || [ "$service" == "front" ]; then
build_and_deploy "nginx-dockerfile" "172.20.32.187/ci4s/ci4s-front:${tag}" "k8s-12front.yaml"
fi


if [ "$service" == "all" ]; then
#部署前端
# build_and_deploy "nginx-dockerfile" "172.20.32.187/ci4s/ci4s-front:${tag}" "k8s-12front.yaml"
#部署管理平台
build_and_deploy "managent-dockerfile" "172.20.32.187/ci4s/ci4s-managent:${tag}" "k8s-7management.yaml"
#部署认证中心
build_and_deploy "auth-dockerfile" "172.20.32.187/ci4s/ci4s-auth:${tag}" "k8s-5auth.yaml"
#部署网关
build_and_deploy "gateway-dockerfile" "172.20.32.187/ci4s/ci4s-gateway:${tag}" "k8s-4gateway.yaml"
#部署系统服务
build_and_deploy "system-dockerfile" "172.20.32.187/ci4s/ci4s-system:${tag}" "k8s-6system.yaml"
#部署配置中心
deploy_nacos "k8s-3nacos.yaml"
fi


# 记录结束时间
end=$(date +%s)
echo "部署成功, 耗时: $((end-start))秒"

+ 2
- 1
k8s/dockerfiles/auth-dockerfile View File

@@ -1,5 +1,6 @@
# 基础镜像
FROM openjdk:8-jre
#FROM openjdk:8-jre
FROM 172.20.32.187/ci4s/openjdk:8-jre
# author
MAINTAINER ruoyi



+ 8
- 8
k8s/dockerfiles/buildimage.sh View File

@@ -1,13 +1,13 @@
#!/bin/bash
# 定义一个名为version的变量
version=$1
url=$2
# 打印变量的值
echo "版本号为: $version"
docker build -t ci4s-gateway:$version -f gateway-dockerfile .
docker build -t ci4s-auth:$version -f auth-dockerfile .
docker build -t ci4s-file:$version -f file-dockerfile .
docker build -t ci4s-gen:$version -f gen-dockerfile .
docker build -t ci4s-job:$version -f job-dockerfile .
docker build -t ci4s-visual:$version -f visual-dockerfile .
docker build -t ci4s-system:$version -f system-dockerfile .
docker build -t $url/ci4s-gateway:$version -f gateway-dockerfile .
docker build -t $url/ci4s-auth:$version -f auth-dockerfile .
docker build -t $url/ci4s-file:$version -f file-dockerfile .
docker build -t $url/ci4s-gen:$version -f gen-dockerfile .
docker build -t $url/ci4s-job:$version -f job-dockerfile .
docker build -t $url/ci4s-visual:$version -f visual-dockerfile .
docker build -t $url/ci4s-system:$version -f system-dockerfile .

+ 26
- 7
k8s/dockerfiles/conf/nginx.conf View File

@@ -14,18 +14,37 @@ http {
listen 8000;
server_name localhost;

location /api/{
rewrite ^/prod-api/(.*)$ /$1 break;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://ci4s-gateway-service.argo.svc:8082/;
}
location /label-studio {
rewrite ^/prod-api/(.*)$ /$1 break;
proxy_pass http://label-studio-ls-app.label-data.svc:80/;
proxy_hide_header X-Frame-Options;
add_header X-Frame-Options "ALLOW-FROM http://label-studio-ls-app.label-data.svc:80/";
}

location /api/v1/model/ {
proxy_pass http://pipeline-convert-service.argo.svc:80;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

location / {
rewrite ^/prod-api/(.*)$ /$1 break;
root /home/ruoyi/projects/ruoyi-ui;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}

location /api/{
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://ci4s-gateway-service.ci4s-test.svc:8082/;
location @router {
rewrite ^.*$ /index.html last;
}

# 避免actuator暴露
@@ -38,4 +57,4 @@ http {
root html;
}
}
}
}

+ 2
- 1
k8s/dockerfiles/file-dockerfile View File

@@ -1,5 +1,6 @@
# 基础镜像
FROM openjdk:8-jre
FROM 172.20.32.187/ci4s/openjdk:8-jre
#FROM openjdk:8-jre
# author
MAINTAINER ruoyi



+ 2
- 1
k8s/dockerfiles/gateway-dockerfile View File

@@ -1,5 +1,6 @@
# 基础镜像
FROM openjdk:8-jre
#FROM openjdk:8-jre
FROM 172.20.32.187/ci4s/openjdk:8-jre
# author
MAINTAINER ruoyi



+ 2
- 1
k8s/dockerfiles/gen-dockerfile View File

@@ -1,5 +1,6 @@
# 基础镜像
FROM openjdk:8-jre
#FROM openjdk:8-jre
FROM 172.20.32.187/ci4s/openjdk:8-jre
# author
MAINTAINER ruoyi



+ 2
- 1
k8s/dockerfiles/job-dockerfile View File

@@ -1,5 +1,6 @@
# 基础镜像
FROM openjdk:8-jre
#FROM openjdk:8-jre
FROM 172.20.32.187/ci4s/openjdk:8-jre
# author
MAINTAINER ruoyi



+ 2
- 1
k8s/dockerfiles/managent-dockerfile View File

@@ -1,5 +1,6 @@
# 基础镜像
FROM openjdk:8-jre
#FROM openjdk:8-jre
FROM 172.20.32.187/ci4s/openjdk:8-jre
# author
MAINTAINER ruoyi



+ 2
- 1
k8s/dockerfiles/nginx-dockerfile View File

@@ -1,5 +1,6 @@
# 基础镜像
FROM nginx
#FROM nginx:latest
FROM 172.20.32.187/ci4s/nginx:latest
# author
MAINTAINER ruoyi



+ 2
- 1
k8s/dockerfiles/system-dockerfile View File

@@ -1,5 +1,6 @@
# 基础镜像
FROM openjdk:8-jre
#FROM openjdk:8-jre
FROM 172.20.32.187/ci4s/openjdk:8-jre
# author
MAINTAINER ruoyi



+ 2
- 1
k8s/dockerfiles/visual-dockerfile View File

@@ -1,5 +1,6 @@
# 基础镜像
FROM openjdk:8-jre
#FROM openjdk:8-jre
FROM 172.20.32.187/ci4s/openjdk:8-jre
# author
MAINTAINER ruoyi



+ 2
- 2
k8s/helm-1mysql/values.yaml View File

@@ -3,7 +3,7 @@
##
image: "mysql"
imageTag: "5.7.30"
Namespace: argo
strategy:
type: Recreate

@@ -110,7 +110,7 @@ persistence:
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
storageClass: "storage-nfs"
storageClass: "nfs-client"
accessMode: ReadWriteOnce
size: 10Gi
annotations: {}


+ 1
- 1
k8s/helm-2redis-ha/templates/redis-haproxy-deployment.yaml View File

@@ -37,7 +37,7 @@ spec:
serviceAccountName: {{ template "redis-ha.serviceAccountName" . }}-haproxy
{{ end }}
nodeSelector:
{{ toYaml .Values.nodeSelector | indent 8 }}
{{ toYaml .Values.nodeSeletor | indent 8 }}
tolerations:
{{ toYaml .Values.tolerations | indent 8 }}
affinity:


+ 2
- 2
k8s/helm-2redis-ha/values.yaml View File

@@ -133,7 +133,7 @@ sysctlImage:
command: []
registry: docker.io
repository: busybox
tag: 1.31.1
tag: 1.28
pullPolicy: Always
mountHostSys: false
resources: {}
@@ -337,7 +337,7 @@ persistentVolume:
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
storageClass: "storage-nfs"
storageClass: "nfs-client"
accessModes:
- ReadWriteOnce
size: 2Gi


+ 7
- 6
k8s/k8s-12front.yaml View File

@@ -2,7 +2,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-front-deployment
namespace: ci4s-test
namespace: argo
spec:
replicas: 1
selector:
@@ -14,17 +14,17 @@ spec:
app: ci4s-front
spec:
containers:
- name: ci4s-front
image: ci4s-front:20240126
ports:
- containerPort: 8000
- name: ci4s-front
image: 172.20.32.187/ci4s/ci4s-front:20240401
ports:
- containerPort: 8000

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-front-service
namespace: ci4s-test
namespace: argo
spec:
type: NodePort
ports:
@@ -33,3 +33,4 @@ spec:
protocol: TCP
selector:
app: ci4s-front


+ 3
- 3
k8s/k8s-3nacos.yaml View File

@@ -1,7 +1,7 @@
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: ci4s-test
namespace: argo
name: nacos-ci4s
labels:
app: nacos-ci4s
@@ -24,7 +24,7 @@ spec:
- name: MODE
value: standalone
- name: MYSQL_SERVICE_HOST
value: mysql.ci4s-test.svc
value: mysql.argo.svc
- name: MYSQL_SERVICE_PORT
value: "3306"
- name: MYSQL_SERVICE_DB_NAME
@@ -43,7 +43,7 @@ spec:
apiVersion: v1
kind: Service
metadata:
namespace: ci4s-test
namespace: argo
name: nacos-ci4s
labels:
app: nacos-ci4s


+ 3
- 3
k8s/k8s-4gateway.yaml View File

@@ -2,7 +2,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-gateway-deployment
namespace: ci4s-test
namespace: argo
spec:
replicas: 1
selector:
@@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: ci4s-gateway
image: ci4s-gateway:v1.0
image: 172.20.32.187/ci4s/ci4s-gateway:20240401
ports:
- containerPort: 8082

@@ -24,7 +24,7 @@ apiVersion: v1
kind: Service
metadata:
name: ci4s-gateway-service
namespace: ci4s-test
namespace: argo
spec:
type: NodePort
ports:


+ 3
- 3
k8s/k8s-5auth.yaml View File

@@ -2,7 +2,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-auth-deployment
namespace: ci4s-test
namespace: argo
spec:
replicas: 1
selector:
@@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: ci4s-auth
image: ci4s-auth:v1.0
image: 172.20.32.187/ci4s/ci4s-auth:20240401
ports:
- containerPort: 9200

@@ -24,7 +24,7 @@ apiVersion: v1
kind: Service
metadata:
name: ci4s-auth-service
namespace: ci4s-test
namespace: argo
spec:
type: NodePort
ports:


+ 3
- 3
k8s/k8s-6system.yaml View File

@@ -2,7 +2,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-system-deployment
namespace: ci4s-test
namespace: argo
spec:
replicas: 1
selector:
@@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: ci4s-system
image: ci4s-system:v1.0
image: 172.20.32.187/ci4s/ci4s-system:20240401
ports:
- containerPort: 9201

@@ -24,7 +24,7 @@ apiVersion: v1
kind: Service
metadata:
name: ci4s-system-service
namespace: ci4s-test
namespace: argo
spec:
type: NodePort
ports:


+ 5
- 5
k8s/k8s-7management.yaml View File

@@ -2,7 +2,7 @@ apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-management-platform-deployment
namespace: ci4s-test
namespace: argo
spec:
replicas: 1
selector:
@@ -15,20 +15,20 @@ spec:
spec:
containers:
- name: ci4s-management-platform
image: ci4s-managent:20240110
image: 172.20.32.187/ci4s/managent:20240401
ports:
- containerPort: 9300
- containerPort: 9213

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-management-platform-service
namespace: ci4s-test
namespace: argo
spec:
type: NodePort
ports:
- port: 9300
- port: 9213
nodePort: 31208
protocol: TCP
selector:


+ 54
- 0
k8s/nginx.conf View File

@@ -0,0 +1,54 @@
worker_processes 1;

events {
worker_connections 1024;
}

http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;

server {
listen 8000;
server_name localhost;

location /api/{
rewrite ^/prod-api/(.*)$ /$1 break;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://ci4s-gateway-service.argo.svc:8082/mmp/;
}
location /label-studio {
rewrite ^/prod-api/(.*)$ /$1 break;
proxy_pass http://label-studio-ls-app.label-data.svc:80/;
proxy_hide_header X-Frame-Options;
add_header X-Frame-Options "ALLOW-FROM http://label-studio-ls-app.label-data.svc:80/";
}

location / {
rewrite ^/prod-api/(.*)$ /$1 break;
root /home/ruoyi/projects/ruoyi-ui;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}

location @router {
rewrite ^.*$ /index.html last;
}

# 避免actuator暴露
if ($request_uri ~ "/actuator") {
return 403;
}

error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}

+ 36
- 0
k8s/template-yaml/deploy/k8s-12front.yaml View File

@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-front-deployment
namespace: argo
spec:
replicas: 1
selector:
matchLabels:
app: ci4s-front
template:
metadata:
labels:
app: ci4s-front
spec:
containers:
- name: ci4s-front
image: 172.20.32.187/ci4s/ci4s-front:202406120836
ports:
- containerPort: 8000

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-front-service
namespace: argo
spec:
type: NodePort
ports:
- port: 8000
nodePort: 31213
protocol: TCP
selector:
app: ci4s-front


+ 36
- 0
k8s/template-yaml/deploy/k8s-7management.yaml View File

@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-management-platform-deployment
namespace: argo
spec:
replicas: 1
selector:
matchLabels:
app: ci4s-management-platform
template:
metadata:
labels:
app: ci4s-management-platform
spec:
containers:
- name: ci4s-management-platform
image: 172.20.32.187/ci4s/managent:202406121003
ports:
- containerPort: 9213

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-management-platform-service
namespace: argo
spec:
type: NodePort
ports:
- port: 9213
nodePort: 31208
protocol: TCP
selector:
app: ci4s-management-platform


+ 36
- 0
k8s/template-yaml/k8s-10gen.yaml View File

@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-gen-deployment
namespace: ci4s-test
spec:
replicas: 1
selector:
matchLabels:
app: ci4s-gen
template:
metadata:
labels:
app: ci4s-gen
spec:
containers:
- name: ci4s-gen
image: ${k8s-10gen-image}
ports:
- containerPort: 9202

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-gen-service
namespace: ci4s-test
spec:
type: NodePort
ports:
- port: 9202
nodePort: 31211
protocol: TCP
selector:
app: ci4s-gen


+ 36
- 0
k8s/template-yaml/k8s-11visual.yaml View File

@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-visual-deployment
namespace: ci4s-test
spec:
replicas: 1
selector:
matchLabels:
app: ci4s-visual
template:
metadata:
labels:
app: ci4s-visual
spec:
containers:
- name: ci4s-visual
image: ${k8s-11visual-image}
ports:
- containerPort: 9100

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-visual-service
namespace: ci4s-test
spec:
type: NodePort
ports:
- port: 9100
nodePort: 31212
protocol: TCP
selector:
app: ci4s-visual


+ 36
- 0
k8s/template-yaml/k8s-12front.yaml View File

@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-front-deployment
namespace: argo
spec:
replicas: 1
selector:
matchLabels:
app: ci4s-front
template:
metadata:
labels:
app: ci4s-front
spec:
containers:
- name: ci4s-front
image: ${k8s-12front-image}
ports:
- containerPort: 8000

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-front-service
namespace: argo
spec:
type: NodePort
ports:
- port: 8000
nodePort: 31213
protocol: TCP
selector:
app: ci4s-front


+ 62
- 0
k8s/template-yaml/k8s-3nacos.yaml View File

@@ -0,0 +1,62 @@
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: argo
name: nacos-ci4s
labels:
app: nacos-ci4s
spec:
replicas: 1
selector:
matchLabels:
app: nacos-ci4s
template:
metadata:
labels:
app: nacos-ci4s
spec:
containers:
- name: nacos-ci4s
image: ${k8s-3nacos-image}
env:
- name: SPRING_DATASOURCE_PLATFORM
value: mysql
- name: MODE
value: standalone
- name: MYSQL_SERVICE_HOST
value: mysql2.argo.svc
- name: MYSQL_SERVICE_PORT
value: "3306"
- name: MYSQL_SERVICE_DB_NAME
value: nacos-ci4s-config
- name: MYSQL_SERVICE_USER
value: root
- name: MYSQL_SERVICE_PASSWORD
value: qazxc123456.
ports:
- containerPort: 8848
- containerPort: 9848
restartPolicy: Always

---

apiVersion: v1
kind: Service
metadata:
namespace: argo
name: nacos-ci4s
labels:
app: nacos-ci4s
spec:
type: NodePort
selector:
app: nacos-ci4s
ports:
- port: 8848
targetPort: 8848
nodePort: 31203
name: web
- port: 9848
targetPort: 9848
nodePort: 31204
name: podsa

+ 36
- 0
k8s/template-yaml/k8s-4gateway.yaml View File

@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-gateway-deployment
namespace: argo
spec:
replicas: 1
selector:
matchLabels:
app: ci4s-gateway
template:
metadata:
labels:
app: ci4s-gateway
spec:
containers:
- name: ci4s-gateway
image: ${k8s-4gateway-image}
ports:
- containerPort: 8082

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-gateway-service
namespace: argo
spec:
type: NodePort
ports:
- port: 8082
nodePort: 31205
protocol: TCP
selector:
app: ci4s-gateway


+ 36
- 0
k8s/template-yaml/k8s-5auth.yaml View File

@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-auth-deployment
namespace: argo
spec:
replicas: 1
selector:
matchLabels:
app: ci4s-auth
template:
metadata:
labels:
app: ci4s-auth
spec:
containers:
- name: ci4s-auth
image: ${k8s-5auth-image}
ports:
- containerPort: 9200

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-auth-service
namespace: argo
spec:
type: NodePort
ports:
- port: 9200
nodePort: 31206
protocol: TCP
selector:
app: ci4s-auth


+ 36
- 0
k8s/template-yaml/k8s-6system.yaml View File

@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-system-deployment
namespace: argo
spec:
replicas: 1
selector:
matchLabels:
app: ci4s-system
template:
metadata:
labels:
app: ci4s-system
spec:
containers:
- name: ci4s-system
image: ${k8s-6system-image}
ports:
- containerPort: 9201

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-system-service
namespace: argo
spec:
type: NodePort
ports:
- port: 9201
nodePort: 31207
protocol: TCP
selector:
app: ci4s-system


+ 36
- 0
k8s/template-yaml/k8s-7management.yaml View File

@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-management-platform-deployment
namespace: argo
spec:
replicas: 1
selector:
matchLabels:
app: ci4s-management-platform
template:
metadata:
labels:
app: ci4s-management-platform
spec:
containers:
- name: ci4s-management-platform
image: ${k8s-7management-image}
ports:
- containerPort: 9213

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-management-platform-service
namespace: argo
spec:
type: NodePort
ports:
- port: 9213
nodePort: 31208
protocol: TCP
selector:
app: ci4s-management-platform


+ 36
- 0
k8s/template-yaml/k8s-8file.yaml View File

@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-file-deployment
namespace: ci4s-test
spec:
replicas: 1
selector:
matchLabels:
app: ci4s-file
template:
metadata:
labels:
app: ci4s-file
spec:
containers:
- name: ci4s-file
image: ${k8s-8file-image}
ports:
- containerPort: 9300

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-file-service
namespace: ci4s-test
spec:
type: NodePort
ports:
- port: 9300
nodePort: 31209
protocol: TCP
selector:
app: ci4s-file


+ 36
- 0
k8s/template-yaml/k8s-9job.yaml View File

@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ci4s-job-deployment
namespace: ci4s-test
spec:
replicas: 1
selector:
matchLabels:
app: ci4s-job
template:
metadata:
labels:
app: ci4s-job
spec:
containers:
- name: ci4s-job
image: ${k8s-9job-image}
ports:
- containerPort: 9203

---
apiVersion: v1
kind: Service
metadata:
name: ci4s-job-service
namespace: ci4s-test
spec:
type: NodePort
ports:
- port: 9203
nodePort: 31210
protocol: TCP
selector:
app: ci4s-job


+ 11
- 4
ruoyi-auth/src/main/resources/bootstrap.yml View File

@@ -14,14 +14,16 @@ spring:
nacos:
discovery:
# 服务注册地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
username: nacos
password: nacos
password: h1n2x3j4y5@
retry:
enabled: true
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
config:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 配置中心地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
# 配置文件格式
file-extension: yml
# 共享配置
@@ -31,4 +33,9 @@ spring:
refresh: true
- data-id: ${spring.application.name}-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
group: DEFAULT_GROUP
refresh: true
refresh: true

redis:
host: 172.20.32.150
port: 6379
password:

+ 6
- 4
ruoyi-gateway/src/main/resources/bootstrap.yml View File

@@ -14,14 +14,16 @@ spring:
nacos:
discovery:
# 服务注册地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
username: nacos
password: nacos
password: h1n2x3j4y5@
retry:
enabled: true
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
config:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 配置中心地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
# 配置文件格式
file-extension: yml
# 共享配置
@@ -42,7 +44,7 @@ spring:
datasource:
ds1:
nacos:
server-addr: nacos-ci4s.ci4s-test.svc:18848
server-addr: 172.20.32.181:8848
dataId: sentinel-ruoyi-gateway
groupId: DEFAULT_GROUP
data-type: json


+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/DatasetServiceImpl.java View File

@@ -225,7 +225,7 @@ public class DatasetServiceImpl implements DatasetService {
e.printStackTrace();
throw new Exception("下载数据集文件错误");
}
}
}

/**
* 上传数据集


+ 3
- 2
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/JupyterServiceImpl.java View File

@@ -100,12 +100,13 @@ public class JupyterServiceImpl implements JupyterService {
String podName = loginUser.getUsername().toLowerCase() + "-editor-pod" + "-" + id;
String pvcName = loginUser.getUsername().toLowerCase() + "-editor-pvc";
//新建编辑器的pvc
V1PersistentVolumeClaim pvc = k8sClientUtil.createPvc(namespace, pvcName, storage, storageClassName);
// V1PersistentVolumeClaim pvc = k8sClientUtil.createPvc(namespace, pvcName, storage, storageClassName);

//TODO 设置镜像可配置,这里先用默认镜像启动pod

// 调用修改后的 createPod 方法,传入额外的参数
Integer podPort = k8sClientUtil.createConfiguredPod(podName, namespace, port, mountPath, pvc, devEnvironment, minioPvcName, datasetPath, modelPath);
// Integer podPort = k8sClientUtil.createConfiguredPod(podName, namespace, port, mountPath, pvc, devEnvironment, minioPvcName, datasetPath, modelPath);
Integer podPort = k8sClientUtil.createConfiguredPod(podName, namespace, port, mountPath, null, devEnvironment, minioPvcName, datasetPath, modelPath);
String url = masterIp + ":" + podPort;
redisService.setCacheObject(podName, masterIp + ":" + podPort);
devEnvironment.setStatus("Pending");


+ 3
- 3
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/utils/K8sClientUtil.java View File

@@ -455,9 +455,9 @@ public class K8sClientUtil {
volumeMounts.add(new V1VolumeMount().name("model").mountPath("/opt/model").readOnly(true));

List<V1Volume> volumes = new ArrayList<>();
volumes.add(new V1Volume().name("workspace").hostPath(new V1HostPathVolumeSource().path(hostPath + "/notebooks").type("DirectoryOrCreate")));
volumes.add(new V1Volume().name("dataset").hostPath(new V1HostPathVolumeSource().path(hostPath + "/dataset").type("DirectoryOrCreate")));
volumes.add(new V1Volume().name("model").hostPath(new V1HostPathVolumeSource().path(hostPath + "/model").type("DirectoryOrCreate")));
volumes.add(new V1Volume().name("workspace").hostPath(new V1HostPathVolumeSource().path(hostPath + "/" + podName + "/notebooks").type("DirectoryOrCreate")));
volumes.add(new V1Volume().name("dataset").hostPath(new V1HostPathVolumeSource().path(hostPath + "/" + podName + "/dataset").type("DirectoryOrCreate")));
volumes.add(new V1Volume().name("model").hostPath(new V1HostPathVolumeSource().path(hostPath + "/" + podName + "/model").type("DirectoryOrCreate")));

// 配置卷和卷挂载
// List<V1VolumeMount> volumeMounts = new ArrayList<>();


+ 4
- 2
ruoyi-modules/management-platform/src/main/resources/bootstrap.yml View File

@@ -14,14 +14,16 @@ spring:
nacos:
discovery:
# 服务注册地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
username: nacos
password: nacos
retry:
enabled: true
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
config:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 配置中心地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
# 配置文件格式
file-extension: yml
# 共享配置


+ 5
- 3
ruoyi-modules/ruoyi-file/src/main/resources/bootstrap.yml View File

@@ -13,15 +13,17 @@ spring:
cloud:
nacos:
discovery:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 服务注册地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
username: nacos
password: nacos
password: h1n2x3j4y5@
retry:
enabled: true
config:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 配置中心地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
# 配置文件格式
file-extension: yml
# 共享配置


+ 5
- 3
ruoyi-modules/ruoyi-gen/src/main/resources/bootstrap.yml View File

@@ -13,15 +13,17 @@ spring:
cloud:
nacos:
discovery:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 服务注册地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
username: nacos
password: nacos
password: h1n2x3j4y5@
retry:
enabled: true
config:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 配置中心地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
# 配置文件格式
file-extension: yml
# 共享配置


+ 5
- 3
ruoyi-modules/ruoyi-job/src/main/resources/bootstrap.yml View File

@@ -13,15 +13,17 @@ spring:
cloud:
nacos:
discovery:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 服务注册地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
username: nacos
password: nacos
password: h1n2x3j4y5@
retry:
enabled: true
config:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 配置中心地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
# 配置文件格式
file-extension: yml
# 共享配置


+ 5
- 3
ruoyi-modules/ruoyi-system/src/main/resources/bootstrap.yml View File

@@ -13,15 +13,17 @@ spring:
cloud:
nacos:
discovery:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 服务注册地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
username: nacos
password: nacos
password: h1n2x3j4y5@
retry:
enabled: true
config:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 配置中心地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
# 配置文件格式
file-extension: yml
# 共享配置


+ 5
- 3
ruoyi-visual/ruoyi-monitor/src/main/resources/bootstrap.yml View File

@@ -13,15 +13,17 @@ spring:
cloud:
nacos:
discovery:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 服务注册地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
username: nacos
password: nacos
password: h1n2x3j4y5@
retry:
enabled: true
config:
namespace: 6caf5d79-c4ce-4e3b-a357-141b74e52a01
# 配置中心地址
server-addr: nacos-ci4s.ci4s-test.svc:8848
server-addr: 172.20.32.181:8848
# 配置文件格式
file-extension: yml
# 共享配置


+ 317
- 0
sql/nacos-ci4s-config.sql View File

@@ -0,0 +1,317 @@
/*
Navicat Premium Data Transfer

Source Server : test-ci4s185
Source Server Type : MySQL
Source Server Version : 50730
Source Host : 172.20.32.185:31201
Source Schema : nacos-ci4s-config

Target Server Type : MySQL
Target Server Version : 50730
File Encoding : 65001

Date: 02/04/2024 14:18:16
*/

SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;

-- ----------------------------
-- Table structure for config_info
-- ----------------------------
DROP TABLE IF EXISTS `config_info`;
CREATE TABLE `config_info` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'content',
`md5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'md5',
`gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
`src_user` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT 'source user',
`src_ip` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'source ip',
`app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '租户字段',
`c_desc` varchar(256) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`c_use` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`effect` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`type` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`c_schema` text CHARACTER SET utf8 COLLATE utf8_bin NULL,
`encrypted_data_key` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT '秘钥',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_configinfo_datagrouptenant`(`data_id`, `group_id`, `tenant_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 19 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'config_info' ROW_FORMAT = DYNAMIC;

-- ----------------------------
-- Records of config_info
-- ----------------------------
INSERT INTO `config_info` VALUES (1, 'application-dev.yml', 'DEFAULT_GROUP', 'spring:\n autoconfigure:\n exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure\n mvc:\n pathmatch:\n matching-strategy: ant_path_matcher\n\n# feign 配置\nfeign:\n sentinel:\n enabled: true\n okhttp:\n enabled: true\n httpclient:\n enabled: false\n client:\n config:\n default:\n connectTimeout: 10000\n readTimeout: 10000\n compression:\n request:\n enabled: true\n min-request-size: 8192\n response:\n enabled: true\n\n# 暴露监控端点\nmanagement:\n endpoints:\n web:\n exposure:\n include: \'*\'\n', '58dde4e3760499d3bac2d77a3a1e9018', '2020-05-20 12:00:00', '2023-12-04 08:08:23', 'nacos', '0:0:0:0:0:0:0:1', '', '', '通用配置', 'null', 'null', 'yaml', '', '');
INSERT INTO `config_info` VALUES (2, 'ruoyi-gateway-dev.yml', 'DEFAULT_GROUP', 'spring:\n redis:\n host: redis-redis-ha.argo.svc\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true\n enabled: true\n routes:\n # 认证中心\n - id: ruoyi-auth\n uri: lb://ruoyi-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: ruoyi-gen\n uri: lb://ruoyi-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: ruoyi-job\n uri: lb://ruoyi-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: ruoyi-system\n uri: lb://ruoyi-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 文件服务\n - id: ruoyi-file\n uri: lb://ruoyi-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # gxx服务\n - id: management-platform\n uri: lb://management-platform\n predicates:\n - Path=/mmp/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /*/v2/api-docs\n - /csrf\n', '7b19d8655c93e94f8730e9ab250e91fe', '2020-05-14 14:17:55', '2024-04-02 11:42:38', 'nacos', '172.20.32.185', '', '', '网关模块', 'null', 'null', 'yaml', '', '');
INSERT INTO `config_info` VALUES (3, 'ruoyi-auth-dev.yml', 'DEFAULT_GROUP', 'spring:\n redis:\n host: redis-redis-ha.argo.svc\n port: 6379\n password:\n', '3f23ca0eb2c263b7cffdabd1d3663c7d', '2020-11-20 00:00:00', '2024-04-02 11:42:50', 'nacos', '172.20.32.185', '', '', '认证中心', 'null', 'null', 'yaml', '', '');
INSERT INTO `config_info` VALUES (4, 'ruoyi-monitor-dev.yml', 'DEFAULT_GROUP', '# spring\nspring:\n security:\n user:\n name: ruoyi\n password: 123456\n boot:\n admin:\n ui:\n title: 若依服务状态监控\n', '6f122fd2bfb8d45f858e7d6529a9cd44', '2020-11-20 00:00:00', '2022-09-29 02:48:54', 'nacos', '0:0:0:0:0:0:0:1', '', '', '监控中心', 'null', 'null', 'yaml', '', '');
INSERT INTO `config_info` VALUES (5, 'ruoyi-system-dev.yml', 'DEFAULT_GROUP', '# spring配置\nspring:\n redis:\n host: redis-redis-ha.argo.svc\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://mysql2.ci4s-test.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: qazxc123456.\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.system\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip', 'cfc31f017166ea404d74d0b6310cf810', '2020-11-20 00:00:00', '2024-04-02 14:15:54', 'nacos', '172.20.32.185', '', '', '系统模块', 'null', 'null', 'yaml', '', '');
INSERT INTO `config_info` VALUES (6, 'ruoyi-gen-dev.yml', 'DEFAULT_GROUP', '# spring配置\nspring:\n redis:\n host: localhost\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://mysql.argo.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: qazxc123456.\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.gen.domain\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n\n# 代码生成\ngen:\n # 作者\n author: ruoyi\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: com.ruoyi.system\n # 自动去除表前缀,默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n', '1a3384705287cb69fe684d1d74b32b6a', '2020-11-20 00:00:00', '2024-04-02 11:43:05', 'nacos', '172.20.32.185', '', '', '代码生成', 'null', 'null', 'yaml', '', '');
INSERT INTO `config_info` VALUES (7, 'ruoyi-job-dev.yml', 'DEFAULT_GROUP', '# spring配置\nspring:\n redis:\n host: localhost\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://mysql.ci4z-test.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: qazxc123456.\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.job.domain\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n', 'b6af6ea9a8679c282d479eaacd252e24', '2020-11-20 00:00:00', '2024-03-27 17:51:28', 'nacos', '172.20.32.181', '', '', '定时任务', 'null', 'null', 'yaml', '', '');
INSERT INTO `config_info` VALUES (8, 'ruoyi-file-dev.yml', 'DEFAULT_GROUP', '# 本地文件上传 \r\nfile:\r\n domain: http://127.0.0.1:9300\r\n path: D:/ruoyi/uploadPath\r\n prefix: /statics\r\n\r\n# FastDFS配置\r\nfdfs:\r\n domain: http://8.129.231.12\r\n soTimeout: 3000\r\n connectTimeout: 2000\r\n trackerList: 8.129.231.12:22122\r\n\r\n# Minio配置\r\nminio:\r\n url: http://8.129.231.12:9000\r\n accessKey: minioadmin\r\n secretKey: minioadmin\r\n bucketName: test', '5382b93f3d8059d6068c0501fdd41195', '2020-11-20 00:00:00', '2020-12-21 21:01:59', NULL, '0:0:0:0:0:0:0:1', '', '', '文件服务', 'null', 'null', 'yaml', NULL, '');
INSERT INTO `config_info` VALUES (9, 'sentinel-ruoyi-gateway', 'DEFAULT_GROUP', '[\r\n {\r\n \"resource\": \"ruoyi-auth\",\r\n \"count\": 500,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"ruoyi-system\",\r\n \"count\": 1000,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"ruoyi-gen\",\r\n \"count\": 200,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n },\r\n {\r\n \"resource\": \"ruoyi-job\",\r\n \"count\": 300,\r\n \"grade\": 1,\r\n \"limitApp\": \"default\",\r\n \"strategy\": 0,\r\n \"controlBehavior\": 0\r\n }\r\n]', '9f3a3069261598f74220bc47958ec252', '2020-11-20 00:00:00', '2020-11-20 00:00:00', NULL, '0:0:0:0:0:0:0:1', '', '', '限流策略', 'null', 'null', 'json', NULL, '');
INSERT INTO `config_info` VALUES (11, 'management-platform-dev.yml', 'DEFAULT_GROUP', 'spring:\n # 文件上传\n servlet:\n multipart:\n # 单个文件大小\n max-file-size: 20GB\n # 设置总上传的文件大小\n max-request-size: 20GB\n redis:\n host: redis-redis-ha.argo.svc\n port: 6379\n password:\n # 数据源\n datasource:\n # Druid StatViewServlet配置\n druid:\n stat-view-servlet:\n # 默认true 内置监控页面首页/druid/index.html\n enabled: true\n initial-size: 20\n max-active: 60\n min-idle: 20\n max-wait: 30000\n dynamic:\n primary: master\n datasource:\n master:\n url: jdbc:mysql://mysql2.argo.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true\n username: root\n password: qazxc123456.\n type: com.alibaba.druid.pool.DruidDataSource\n driverClassName: com.mysql.cj.jdbc.Driver\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.management-platform\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n# argo\n# argo\nargo:\n url: http://pipeline-convert-service.argo.svc:80\n convert: /api/v1/workflow/convert\n workflowRun: /api/v1/workflow/run\n workflowStatus: /api/v1/workflow/getWorkflow \n workflowTermination: /api/v1/workflow/terminate\n workflowLog: /api/v1/workflow/getWorkflowLog\n workflowRealTimeLog: /api/v1/workflow/getRealtimeWorkflowLog\n workflowCopy: /api/v1/workflow/copy\n workflowPodLog: /api/v1/workflow/getLogByPod \n ins:\n logsLines: 200\n# 流水线配置\npipeline:\n control_strategy: \'{\"max_run_time\":{\"type\":\"str\",\"label\":\"超时中断\",\"item_type\":\"\",\"value\":\"2h\"},\"retry_times\":{\"type\":\"str\",\"item_type\":\"\",\"label\":\"重试次数\",\"value\":\"1\"}}\'\n\nk8s:\n storageClassName: storage-nfs\n http: apiserver.cluster.local:6443\n token: eyJhbGciOiJSUzI1NiIsImtpZCI6IlRrRURCNEZ0TG1iQmd0UW05Mk9weGFHdERCQlBXUlBKRS14WTI2WmRLd28ifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJrdWJlLXN5c3RlbSIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VjcmV0Lm5hbWUiOiJuYW1lc3BhY2UtY29udHJvbGxlci10b2tlbi10dnRwbiIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJuYW1lc3BhY2UtY29udHJvbGxlciIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50LnVpZCI6IjAzOTVlZGRmLWZjNGYtNDM0MS05ODdhLTlmNjgyOWEyMmQ0YyIsInN1YiI6InN5c3RlbTpzZXJ2aWNlYWNjb3VudDprdWJlLXN5c3RlbTpuYW1lc3BhY2UtY29udHJvbGxlciJ9.nnoplRdA1OoPcqkt2fr1h4XYWAsaFw6XPkGm35CL3_pNIllttf99JyYAcNDhTB23eeu7qOz_afF760cMaVWA2itxYaRzbm-9qkySklOsdF3hHFRKoMB6G7o1liMpThXM4zi-9Ln1_BEtJgQzBVguVGEMWWBJNH9oBL5YVLGP7jUGjD8hEKsu4sBpymAwEeSAN4Dkj44M6Fk8WahsRMY7wd-HNqrK94xB8WIg9dK4SzPOv9VixdnpJ0jDXdRL4aRA5Mk0UKORtuAotNDT74AS1YDShGa0SEuY_SnzUcG7GLuRJOWb91YFTyWt3BDucWNuMECfV0ygPqRMJSqu3ODRjw\n # jupyter配置\njupyter:\n image: jupyterlab:v1\n port: 8888\n namespace: default\n mountPath: /opt/notebooks/\n storage: 2Gi\n masterIp: http://172.20.32.185\n# tensorBoard配置\ntensorBoard:\n image: activeeon/tensorboard:latest\n port: 6006\n mountPath: /logs/\n masterIp: http://172.20.32.185\nminio:\n endpoint: minio.argo.svc:9000\n accessKey: admin\n secretKey: qazxc123456.\n\nharbor:\n bucketName: tempimagefile\n repository: testlib\n harborUrl: 172.20.32.187\n harborUser: admin\n harborpassword: Harbor12345\n deploymentName: docker-push-deployment\n serviceNS: argo', 'bbc7773af0267fd5ef4a986def5c4931', '2024-01-03 16:34:18', '2024-04-02 14:16:08', 'nacos', '172.20.32.185', '', '', '', '', '', 'yaml', '', '');
INSERT INTO `config_info` VALUES (12, 'pipeline-covert-config', 'ARGO', '#部署环境\ndeploy-env: test\nlog:\n # 日志级别\n level: info\n # 日志存放路径\n log-path: /var/log/pipeline-convert\n # 日志保留时间\n max-log-age: 7200h\n # 日志大小\n log-rotation-size: 104587600\n # 日子归档间隔\n log-archive-time: 24h\n\nloki:\n # loki host\n host: http://loki.loki-log:3100/loki\n query-range-uri: /api/v1/query_range\n # limit 每次读取日志的条数\n limit: 2000\n\ndb: \n # host 数据库连接host\n host: mysql.argo.svc.cluster.local\n # 数据库名字\n database: pipeline_convert\n # 端口\n port: 3306\n # 数据库用户名\n user: root\n # 数据库密码\n password: qazxc123456.\n\nworkflow:\n # pod延迟删除时间 一天\n pod-delete-delay-time: 24h\n workflow-retain-time: 24h\n\n\n\n', '8d5fcd64878095144f7153ba1f8ae309', '2024-03-22 11:00:41', '2024-03-27 16:47:18', 'nacos', '172.20.32.181', '', '', 'pipeline convert配置', '', '', 'yaml', '', '');

-- ----------------------------
-- Table structure for config_info_aggr
-- ----------------------------
DROP TABLE IF EXISTS `config_info_aggr`;
CREATE TABLE `config_info_aggr` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'group_id',
`datum_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'datum_id',
`content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT '内容',
`gmt_modified` datetime NOT NULL COMMENT '修改时间',
`app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '租户字段',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_configinfoaggr_datagrouptenantdatum`(`data_id`, `group_id`, `tenant_id`, `datum_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '增加租户字段' ROW_FORMAT = DYNAMIC;

-- ----------------------------
-- Records of config_info_aggr
-- ----------------------------

-- ----------------------------
-- Table structure for config_info_beta
-- ----------------------------
DROP TABLE IF EXISTS `config_info_beta`;
CREATE TABLE `config_info_beta` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'group_id',
`app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'app_name',
`content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'content',
`beta_ips` varchar(1024) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'betaIps',
`md5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'md5',
`gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
`src_user` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT 'source user',
`src_ip` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'source ip',
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '租户字段',
`encrypted_data_key` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT '秘钥',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_configinfobeta_datagrouptenant`(`data_id`, `group_id`, `tenant_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'config_info_beta' ROW_FORMAT = DYNAMIC;

-- ----------------------------
-- Records of config_info_beta
-- ----------------------------

-- ----------------------------
-- Table structure for config_info_tag
-- ----------------------------
DROP TABLE IF EXISTS `config_info_tag`;
CREATE TABLE `config_info_tag` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'group_id',
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT 'tenant_id',
`tag_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'tag_id',
`app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'app_name',
`content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'content',
`md5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'md5',
`gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
`src_user` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT 'source user',
`src_ip` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'source ip',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_configinfotag_datagrouptenanttag`(`data_id`, `group_id`, `tenant_id`, `tag_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'config_info_tag' ROW_FORMAT = DYNAMIC;

-- ----------------------------
-- Records of config_info_tag
-- ----------------------------

-- ----------------------------
-- Table structure for config_tags_relation
-- ----------------------------
DROP TABLE IF EXISTS `config_tags_relation`;
CREATE TABLE `config_tags_relation` (
`id` bigint(20) NOT NULL COMMENT 'id',
`tag_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'tag_name',
`tag_type` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'tag_type',
`data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'group_id',
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT 'tenant_id',
`nid` bigint(20) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`nid`) USING BTREE,
UNIQUE INDEX `uk_configtagrelation_configidtag`(`id`, `tag_name`, `tag_type`) USING BTREE,
INDEX `idx_tenant_id`(`tenant_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'config_tag_relation' ROW_FORMAT = DYNAMIC;

-- ----------------------------
-- Records of config_tags_relation
-- ----------------------------

-- ----------------------------
-- Table structure for group_capacity
-- ----------------------------
DROP TABLE IF EXISTS `group_capacity`;
CREATE TABLE `group_capacity` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'Group ID,空字符表示整个集群',
`quota` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '配额,0表示使用默认值',
`usage` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '使用量',
`max_size` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '单个配置大小上限,单位为字节,0表示使用默认值',
`max_aggr_count` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '聚合子配置最大个数,,0表示使用默认值',
`max_aggr_size` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '单个聚合数据的子配置大小上限,单位为字节,0表示使用默认值',
`max_history_count` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '最大变更历史数量',
`gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_group_id`(`group_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '集群、各Group容量信息表' ROW_FORMAT = DYNAMIC;

-- ----------------------------
-- Records of group_capacity
-- ----------------------------

-- ----------------------------
-- Table structure for his_config_info
-- ----------------------------
DROP TABLE IF EXISTS `his_config_info`;
CREATE TABLE `his_config_info` (
`id` bigint(20) UNSIGNED NOT NULL,
`nid` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'app_name',
`content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`md5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`src_user` text CHARACTER SET utf8 COLLATE utf8_bin NULL,
`src_ip` varchar(50) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`op_type` char(10) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '租户字段',
`encrypted_data_key` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT '秘钥',
PRIMARY KEY (`nid`) USING BTREE,
INDEX `idx_gmt_create`(`gmt_create`) USING BTREE,
INDEX `idx_gmt_modified`(`gmt_modified`) USING BTREE,
INDEX `idx_did`(`data_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 21 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '多租户改造' ROW_FORMAT = DYNAMIC;

-- ----------------------------
-- Records of his_config_info
-- ----------------------------
INSERT INTO `his_config_info` VALUES (0, 1, 'pipeline-covert-config', 'ARGO', '', '#部署环境\r\ndeploy-env: test\r\nlog:\r\n # 日志级别\r\n level: info\r\n # 日志存放路径\r\n log-path: /var/log/pipeline-convert\r\n # 日志保留时间\r\n max-log-age: 7200h\r\n # 日志大小\r\n log-rotation-size: 104587600\r\n # 日子归档间隔\r\n log-archive-time: 24h', '11f0ca588c8fd47f7186cbbcd107540f', '2024-03-22 03:00:41', '2024-03-22 11:00:41', 'nacos', '172.20.32.181', 'I', '', '');
INSERT INTO `his_config_info` VALUES (12, 2, 'pipeline-covert-config', 'ARGO', '', '#部署环境\r\ndeploy-env: test\r\nlog:\r\n # 日志级别\r\n level: info\r\n # 日志存放路径\r\n log-path: /var/log/pipeline-convert\r\n # 日志保留时间\r\n max-log-age: 7200h\r\n # 日志大小\r\n log-rotation-size: 104587600\r\n # 日子归档间隔\r\n log-archive-time: 24h', '11f0ca588c8fd47f7186cbbcd107540f', '2024-03-22 07:06:57', '2024-03-22 15:06:57', 'nacos', '172.20.32.181', 'U', '', '');
INSERT INTO `his_config_info` VALUES (12, 3, 'pipeline-covert-config', 'ARGO', '', '#部署环境\ndeploy-env: test\nlog:\n # 日志级别\n level: info\n # 日志存放路径\n log-path: /var/log/pipeline-convert\n # 日志保留时间\n max-log-age: 4800h\n # 日志大小\n log-rotation-size: 104587600\n # 日子归档间隔\n log-archive-time: 24h', '6c458282622414ed7e4670d94aee8e81', '2024-03-27 08:09:25', '2024-03-27 16:09:26', 'nacos', '172.20.32.181', 'U', '', '');
INSERT INTO `his_config_info` VALUES (12, 4, 'pipeline-covert-config', 'ARGO', '', '#部署环境\ndeploy-env: test\nlog:\n # 日志级别\n level: info\n # 日志存放路径\n log-path: /var/log/pipeline-convert\n # 日志保留时间\n max-log-age: 7200h\n # 日志大小\n log-rotation-size: 104587600\n # 日子归档间隔\n log-archive-time: 24h', '6161ef86c21f23158c47065a6be64ab0', '2024-03-27 08:47:18', '2024-03-27 16:47:18', 'nacos', '172.20.32.181', 'U', '', '');
INSERT INTO `his_config_info` VALUES (11, 5, 'management-platform-dev.yml', 'DEFAULT_GROUP', '', 'spring:\n # 数据源\n redis:\n host: 172.20.32.150\n port: 6379\n password:\n datasource:\n # Druid StatViewServlet配置\n druid:\n stat-view-servlet:\n # 默认true 内置监控页面首页/druid/index.html\n enabled: true\n initial-size: 20\n max-active: 60\n min-idle: 20\n max-wait: 30000\n dynamic:\n primary: master\n datasource:\n master:\n url: jdbc:mysql://mysql.ci4s-test.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true\n username: root\n password: qazxc123456.\n type: com.alibaba.druid.pool.DruidDataSource\n driverClassName: com.mysql.cj.jdbc.Driver\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.management-platform\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n# argo\nargo:\n url: pipeline-convert-service.argo.svc:80\n convert: /api/v1/workflow/convert\n workflowRun: /api/v1/workflow/run\n workflowStatus: /api/v1/workflow/getWorkflow \n workflowTermination: /api/v1/workflow/terminate\n workflowLog: /api/v1/workflow/getWorkflowLog\n\n\n# 流水线配置\npipeline:\n control_strategy: \'[{\"type\":\"str\",\"label\":\"超时中断\",\"require\":1,\"choice\":[],\"default\":\"0\",\"placeholder\":\"\",\"describe\":\"组件运行时长,支持s(秒),m(分钟),h(小时),d(天),示例:3h,代表3个小时超时,0表示不限制时长\",\"editable\":1},{\"type\":\"int\",\"label\":\"重试次数\",\"require\":1,\"choice\":[],\"default\":\"0\",\"placeholder\":\"\",\"describe\":\"组件运行失败自动重试次数\",\"editable\":1}]\'\n\nk8s:\n storageClassName: storage-nfs\n http: apiserver.cluster.local:6443\n token: eyJhbGciOiJSUzI1NiIsImtpZCI6IjRWcFBPWl9YSFFxQ2tVanRuNHdRT1dnUlJNTnB2bG5TQlVSRjNKdExWNDQifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJrdWJlLXN5c3RlbSIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VjcmV0Lm5hbWUiOiJkZWZhdWx0LXRva2VuLXNteGxuIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQubmFtZSI6ImRlZmF1bHQiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlcnZpY2UtYWNjb3VudC51aWQiOiIyZWY1ZjdkMC0zMTdkLTQxN2UtOWY4Ni1mYjA1OTFhYWVhZDQiLCJzdWIiOiJzeXN0ZW06c2VydmljZWFjY291bnQ6a3ViZS1zeXN0ZW06ZGVmYXVsdCJ9.GMpReYK7YJ0nNy-F6VrUJQzjWQiSauAOeq0-DT8ik2Lx8f2eznYEm_3cHX4kIn_nYgfxo857urcHt4Ft6IgVtWzxLzVTCQVaNP_H2J8bnJn8W2tUKXzF_3d_GwO75H7kN8P3aoShULrOLpiIf3o3Az28_gwHkwCnd42npcKrCXfAKj8A2U7-KUFQXXA-etrWSw81C5t8ziL-2xaiDgwD3ewH-TNYsOpyWjGopNTxJn1F7GyJ7xDlmMJOaZhSnOrDggB7lqDEsE68YmZtqB7lcSaZHnKzvNhEdbKri4R7_urpjttz_k6qcfIi-l6GwPtJLatsPDg3OL3FFnzjvArJ-A\n# jupyter配置\njupyter:\n image: jupyterlab:v1\n port: 8888\n namespace: default\n mountPath: /opt/notebooks/\n storage: 2Gi\n masterIp: http://172.20.32.181\n\nminio:\n endpoint: minio.argo.svc:9000\n accessKey: admin\n secretKey: qazxc123456.', '3d63e6de0eccc6109901e4ac2c68d80d', '2024-03-27 09:23:31', '2024-03-27 17:23:31', 'nacos', '172.20.32.181', 'U', '', '');
INSERT INTO `his_config_info` VALUES (2, 6, 'ruoyi-gateway-dev.yml', 'DEFAULT_GROUP', '', 'spring:\n redis:\n host: 172.20.32.150\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true\n enabled: true\n routes:\n # 认证中心\n - id: ruoyi-auth\n uri: lb://ruoyi-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: ruoyi-gen\n uri: lb://ruoyi-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: ruoyi-job\n uri: lb://ruoyi-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: ruoyi-system\n uri: lb://ruoyi-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 文件服务\n - id: ruoyi-file\n uri: lb://ruoyi-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # gxx服务\n - id: management-platform\n uri: lb://management-platform\n predicates:\n - Path=/mmp/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /*/v2/api-docs\n - /csrf\n', '59880f554f7c184a54b0cb9f51391605', '2024-03-27 09:24:05', '2024-03-27 17:24:06', 'nacos', '172.20.32.181', 'U', '', '');
INSERT INTO `his_config_info` VALUES (3, 7, 'ruoyi-auth-dev.yml', 'DEFAULT_GROUP', '', 'spring:\n redis:\n host: 172.20.32.150\n port: 6379\n password:\n', 'e4ea9948e873663be64e3349e5fde18d', '2024-03-27 09:24:16', '2024-03-27 17:24:16', 'nacos', '172.20.32.181', 'U', '', '');
INSERT INTO `his_config_info` VALUES (5, 8, 'ruoyi-system-dev.yml', 'DEFAULT_GROUP', '', '# spring配置\nspring:\n redis:\n host: 172.20.32.150\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://mysql.ci4s-test.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: qazxc123456.\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.system\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip', 'b03c6adb54ca4c7c2c781301b509313f', '2024-03-27 09:24:30', '2024-03-27 17:24:30', 'nacos', '172.20.32.181', 'U', '', '');
INSERT INTO `his_config_info` VALUES (11, 9, 'management-platform-dev.yml', 'DEFAULT_GROUP', '', 'spring:\n # 文件上传\n servlet:\n multipart:\n # 单个文件大小\n max-file-size: 20GB\n # 设置总上传的文件大小\n max-request-size: 20GB\n redis:\n host: redis-redis-ha.ci4s-test.svc\n port: 6379\n password:\n # 数据源\n datasource:\n # Druid StatViewServlet配置\n druid:\n stat-view-servlet:\n # 默认true 内置监控页面首页/druid/index.html\n enabled: true\n initial-size: 20\n max-active: 60\n min-idle: 20\n max-wait: 30000\n dynamic:\n primary: master\n datasource:\n master:\n url: jdbc:mysql://mysql.ci4s-test.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true\n username: root\n password: 123456\n type: com.alibaba.druid.pool.DruidDataSource\n driverClassName: com.mysql.cj.jdbc.Driver\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.management-platform\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n# argo\n# argo\nargo:\n url: pipeline-convert-service.ci4s-test.svc:80\n convert: /api/v1/workflow/convert\n workflowRun: /api/v1/workflow/run\n workflowStatus: /api/v1/workflow/getWorkflow \n workflowTermination: /api/v1/workflow/terminate\n workflowLog: /api/v1/workflow/getWorkflowLog\n workflowRealTimeLog: /api/v1/workflow/getRealtimeWorkflowLog\n workflowCopy: /api/v1/workflow/copy\n workflowPodLog: /api/v1/workflow/getLogByPod \n\n# 流水线配置\npipeline:\n control_strategy: \'{\"max_run_time\":{\"type\":\"str\",\"label\":\"超时中断\",\"item_type\":\"\",\"value\":\"2h\"},\"retry_times\":{\"type\":\"str\",\"item_type\":\"\",\"label\":\"重试次数\",\"value\":\"1\"}}\'\n\nk8s:\n storageClassName: storage-nfs\n http: apiserver.cluster.local:6443\n token: eyJhbGciOiJSUzI1NiIsImtpZCI6IjRWcFBPWl9YSFFxQ2tVanRuNHdRT1dnUlJNTnB2bG5TQlVSRjNKdExWNDQifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJrdWJlLXN5c3RlbSIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VjcmV0Lm5hbWUiOiJkZWZhdWx0LXRva2VuLXNteGxuIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQubmFtZSI6ImRlZmF1bHQiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlcnZpY2UtYWNjb3VudC51aWQiOiIyZWY1ZjdkMC0zMTdkLTQxN2UtOWY4Ni1mYjA1OTFhYWVhZDQiLCJzdWIiOiJzeXN0ZW06c2VydmljZWFjY291bnQ6a3ViZS1zeXN0ZW06ZGVmYXVsdCJ9.GMpReYK7YJ0nNy-F6VrUJQzjWQiSauAOeq0-DT8ik2Lx8f2eznYEm_3cHX4kIn_nYgfxo857urcHt4Ft6IgVtWzxLzVTCQVaNP_H2J8bnJn8W2tUKXzF_3d_GwO75H7kN8P3aoShULrOLpiIf3o3Az28_gwHkwCnd42npcKrCXfAKj8A2U7-KUFQXXA-etrWSw81C5t8ziL-2xaiDgwD3ewH-TNYsOpyWjGopNTxJn1F7GyJ7xDlmMJOaZhSnOrDggB7lqDEsE68YmZtqB7lcSaZHnKzvNhEdbKri4R7_urpjttz_k6qcfIi-l6GwPtJLatsPDg3OL3FFnzjvArJ-A\n# jupyter配置\njupyter:\n image: jupyterlab:v1\n port: 8888\n namespace: default\n mountPath: /opt/notebooks/\n storage: 2Gi\n masterIp: http://172.20.32.181\n# tensorBoard配置\ntensorBoard:\n image: activeeon/tensorboard:latest\n port: 6006\n mountPath: /logs/\n masterIp: http://172.20.32.181\nminio:\n endpoint: minio.argo.svc:9000\n accessKey: admin\n secretKey: qazxc123456.\n\nharbor:\n bucketName: tempimagefile\n repository: testlib\n harborUrl: 172.20.32.187\n harborUser: admin\n harborpassword: Harbor12345\n deploymentName: docker-push-deployment\n serviceNS: argo', '02aec03de5e1e375d49a187744d2508d', '2024-03-27 09:49:11', '2024-03-27 17:49:12', 'nacos', '172.20.32.181', 'U', '', '');
INSERT INTO `his_config_info` VALUES (7, 10, 'ruoyi-job-dev.yml', 'DEFAULT_GROUP', '', '# spring配置\nspring:\n redis:\n host: localhost\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://localhost:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: password\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.job.domain\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n', 'edcf0e3fe13fea07b4ec08b1088f30b3', '2024-03-27 09:51:13', '2024-03-27 17:51:14', 'nacos', '172.20.32.181', 'U', '', '');
INSERT INTO `his_config_info` VALUES (7, 11, 'ruoyi-job-dev.yml', 'DEFAULT_GROUP', '', '# spring配置\nspring:\n redis:\n host: localhost\n port: 6379\n password: \n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://mysql.ci4z-test.svc:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: qazxc123456.\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.job.domain\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 定时任务接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n', '1fbce310453b2825df064f2d5303431c', '2024-03-27 09:51:27', '2024-03-27 17:51:28', 'nacos', '172.20.32.181', 'U', '', '');
INSERT INTO `his_config_info` VALUES (6, 12, 'ruoyi-gen-dev.yml', 'DEFAULT_GROUP', '', '# spring配置\nspring:\n redis:\n host: localhost\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://localhost:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: password\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.gen.domain\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n\n# 代码生成\ngen:\n # 作者\n author: ruoyi\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: com.ruoyi.system\n # 自动去除表前缀,默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n', 'eb592420b3fceae1402881887b8a6a0d', '2024-03-27 09:52:02', '2024-03-27 17:52:03', 'nacos', '172.20.32.181', 'U', '', '');
INSERT INTO `his_config_info` VALUES (11, 13, 'management-platform-dev.yml', 'DEFAULT_GROUP', '', 'spring:\n # 文件上传\n servlet:\n multipart:\n # 单个文件大小\n max-file-size: 20GB\n # 设置总上传的文件大小\n max-request-size: 20GB\n redis:\n host: redis-redis-ha.ci4s-test.svc\n port: 6379\n password:\n # 数据源\n datasource:\n # Druid StatViewServlet配置\n druid:\n stat-view-servlet:\n # 默认true 内置监控页面首页/druid/index.html\n enabled: true\n initial-size: 20\n max-active: 60\n min-idle: 20\n max-wait: 30000\n dynamic:\n primary: master\n datasource:\n master:\n url: jdbc:mysql://mysql.ci4s-test.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true\n username: root\n password: qazxc123456.\n type: com.alibaba.druid.pool.DruidDataSource\n driverClassName: com.mysql.cj.jdbc.Driver\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.management-platform\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n# argo\n# argo\nargo:\n url: pipeline-convert-service.ci4s-test.svc:80\n convert: /api/v1/workflow/convert\n workflowRun: /api/v1/workflow/run\n workflowStatus: /api/v1/workflow/getWorkflow \n workflowTermination: /api/v1/workflow/terminate\n workflowLog: /api/v1/workflow/getWorkflowLog\n workflowRealTimeLog: /api/v1/workflow/getRealtimeWorkflowLog\n workflowCopy: /api/v1/workflow/copy\n workflowPodLog: /api/v1/workflow/getLogByPod \n\n# 流水线配置\npipeline:\n control_strategy: \'{\"max_run_time\":{\"type\":\"str\",\"label\":\"超时中断\",\"item_type\":\"\",\"value\":\"2h\"},\"retry_times\":{\"type\":\"str\",\"item_type\":\"\",\"label\":\"重试次数\",\"value\":\"1\"}}\'\n\nk8s:\n storageClassName: storage-nfs\n http: apiserver.cluster.local:6443\n token: eyJhbGciOiJSUzI1NiIsImtpZCI6IjRWcFBPWl9YSFFxQ2tVanRuNHdRT1dnUlJNTnB2bG5TQlVSRjNKdExWNDQifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJrdWJlLXN5c3RlbSIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VjcmV0Lm5hbWUiOiJkZWZhdWx0LXRva2VuLXNteGxuIiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9zZXJ2aWNlLWFjY291bnQubmFtZSI6ImRlZmF1bHQiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2VhY2NvdW50L3NlcnZpY2UtYWNjb3VudC51aWQiOiIyZWY1ZjdkMC0zMTdkLTQxN2UtOWY4Ni1mYjA1OTFhYWVhZDQiLCJzdWIiOiJzeXN0ZW06c2VydmljZWFjY291bnQ6a3ViZS1zeXN0ZW06ZGVmYXVsdCJ9.GMpReYK7YJ0nNy-F6VrUJQzjWQiSauAOeq0-DT8ik2Lx8f2eznYEm_3cHX4kIn_nYgfxo857urcHt4Ft6IgVtWzxLzVTCQVaNP_H2J8bnJn8W2tUKXzF_3d_GwO75H7kN8P3aoShULrOLpiIf3o3Az28_gwHkwCnd42npcKrCXfAKj8A2U7-KUFQXXA-etrWSw81C5t8ziL-2xaiDgwD3ewH-TNYsOpyWjGopNTxJn1F7GyJ7xDlmMJOaZhSnOrDggB7lqDEsE68YmZtqB7lcSaZHnKzvNhEdbKri4R7_urpjttz_k6qcfIi-l6GwPtJLatsPDg3OL3FFnzjvArJ-A\n# jupyter配置\njupyter:\n image: jupyterlab:v1\n port: 8888\n namespace: default\n mountPath: /opt/notebooks/\n storage: 2Gi\n masterIp: http://172.20.32.181\n# tensorBoard配置\ntensorBoard:\n image: activeeon/tensorboard:latest\n port: 6006\n mountPath: /logs/\n masterIp: http://172.20.32.181\nminio:\n endpoint: minio.argo.svc:9000\n accessKey: admin\n secretKey: qazxc123456.\n\nharbor:\n bucketName: tempimagefile\n repository: testlib\n harborUrl: 172.20.32.187\n harborUser: admin\n harborpassword: Harbor12345\n deploymentName: docker-push-deployment\n serviceNS: argo', 'da833e9cbc11db91a9a3b14dadedc348', '2024-04-02 03:42:16', '2024-04-02 11:42:16', 'nacos', '172.20.32.185', 'U', '', '');
INSERT INTO `his_config_info` VALUES (2, 14, 'ruoyi-gateway-dev.yml', 'DEFAULT_GROUP', '', 'spring:\n redis:\n host: redis-redis-ha.ci4s-test.svc\n port: 6379\n password:\n cloud:\n gateway:\n discovery:\n locator:\n lowerCaseServiceId: true\n enabled: true\n routes:\n # 认证中心\n - id: ruoyi-auth\n uri: lb://ruoyi-auth\n predicates:\n - Path=/auth/**\n filters:\n # 验证码处理\n - CacheRequestFilter\n - ValidateCodeFilter\n - StripPrefix=1\n # 代码生成\n - id: ruoyi-gen\n uri: lb://ruoyi-gen\n predicates:\n - Path=/code/**\n filters:\n - StripPrefix=1\n # 定时任务\n - id: ruoyi-job\n uri: lb://ruoyi-job\n predicates:\n - Path=/schedule/**\n filters:\n - StripPrefix=1\n # 系统模块\n - id: ruoyi-system\n uri: lb://ruoyi-system\n predicates:\n - Path=/system/**\n filters:\n - StripPrefix=1\n # 文件服务\n - id: ruoyi-file\n uri: lb://ruoyi-file\n predicates:\n - Path=/file/**\n filters:\n - StripPrefix=1\n # gxx服务\n - id: management-platform\n uri: lb://management-platform\n predicates:\n - Path=/mmp/**\n filters:\n - StripPrefix=1 \n\n# 安全配置\nsecurity:\n # 验证码\n captcha:\n enabled: true\n type: math\n # 防止XSS攻击\n xss:\n enabled: true\n excludeUrls:\n - /system/notice\n # 不校验白名单\n ignore:\n whites:\n - /auth/logout\n - /auth/login\n - /auth/register\n - /*/v2/api-docs\n - /csrf\n', 'b3f2a075435f760a32e8c3475f929376', '2024-04-02 03:42:37', '2024-04-02 11:42:38', 'nacos', '172.20.32.185', 'U', '', '');
INSERT INTO `his_config_info` VALUES (3, 15, 'ruoyi-auth-dev.yml', 'DEFAULT_GROUP', '', 'spring:\n redis:\n host: redis-redis-ha.ci4s-test.svc\n port: 6379\n password:\n', 'ec9da217447aa7dda2592712f04377e4', '2024-04-02 03:42:49', '2024-04-02 11:42:50', 'nacos', '172.20.32.185', 'U', '', '');
INSERT INTO `his_config_info` VALUES (6, 16, 'ruoyi-gen-dev.yml', 'DEFAULT_GROUP', '', '# spring配置\nspring:\n redis:\n host: localhost\n port: 6379\n password:\n datasource:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://mysql.ci4s-test.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: qazxc123456.\n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.gen.domain\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 代码生成接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n\n# 代码生成\ngen:\n # 作者\n author: ruoyi\n # 默认生成包路径 system 需改成自己的模块名称 如 system monitor tool\n packageName: com.ruoyi.system\n # 自动去除表前缀,默认是false\n autoRemovePre: false\n # 表前缀(生成类名不会包含表前缀,多个用逗号分隔)\n tablePrefix: sys_\n', '67fafc1694708436a7daa69b359cd7ce', '2024-04-02 03:43:04', '2024-04-02 11:43:05', 'nacos', '172.20.32.185', 'U', '', '');
INSERT INTO `his_config_info` VALUES (11, 17, 'management-platform-dev.yml', 'DEFAULT_GROUP', '', 'spring:\n # 文件上传\n servlet:\n multipart:\n # 单个文件大小\n max-file-size: 20GB\n # 设置总上传的文件大小\n max-request-size: 20GB\n redis:\n host: redis-redis-ha.argo.svc\n port: 6379\n password:\n # 数据源\n datasource:\n # Druid StatViewServlet配置\n druid:\n stat-view-servlet:\n # 默认true 内置监控页面首页/druid/index.html\n enabled: true\n initial-size: 20\n max-active: 60\n min-idle: 20\n max-wait: 30000\n dynamic:\n primary: master\n datasource:\n master:\n url: jdbc:mysql://mysql.argo.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true\n username: root\n password: qazxc123456.\n type: com.alibaba.druid.pool.DruidDataSource\n driverClassName: com.mysql.cj.jdbc.Driver\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.management-platform\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n# argo\n# argo\nargo:\n url: http://pipeline-convert-service.ci4s-test.svc:80\n convert: /api/v1/workflow/convert\n workflowRun: /api/v1/workflow/run\n workflowStatus: /api/v1/workflow/getWorkflow \n workflowTermination: /api/v1/workflow/terminate\n workflowLog: /api/v1/workflow/getWorkflowLog\n workflowRealTimeLog: /api/v1/workflow/getRealtimeWorkflowLog\n workflowCopy: /api/v1/workflow/copy\n workflowPodLog: /api/v1/workflow/getLogByPod \n\n# 流水线配置\npipeline:\n control_strategy: \'{\"max_run_time\":{\"type\":\"str\",\"label\":\"超时中断\",\"item_type\":\"\",\"value\":\"2h\"},\"retry_times\":{\"type\":\"str\",\"item_type\":\"\",\"label\":\"重试次数\",\"value\":\"1\"}}\'\n\nk8s:\n storageClassName: storage-nfs\n http: apiserver.cluster.local:6443\n token: eyJhbGciOiJSUzI1NiIsImtpZCI6IlRrRURCNEZ0TG1iQmd0UW05Mk9weGFHdERCQlBXUlBKRS14WTI2WmRLd28ifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJrdWJlLXN5c3RlbSIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VjcmV0Lm5hbWUiOiJuYW1lc3BhY2UtY29udHJvbGxlci10b2tlbi10dnRwbiIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJuYW1lc3BhY2UtY29udHJvbGxlciIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50LnVpZCI6IjAzOTVlZGRmLWZjNGYtNDM0MS05ODdhLTlmNjgyOWEyMmQ0YyIsInN1YiI6InN5c3RlbTpzZXJ2aWNlYWNjb3VudDprdWJlLXN5c3RlbTpuYW1lc3BhY2UtY29udHJvbGxlciJ9.nnoplRdA1OoPcqkt2fr1h4XYWAsaFw6XPkGm35CL3_pNIllttf99JyYAcNDhTB23eeu7qOz_afF760cMaVWA2itxYaRzbm-9qkySklOsdF3hHFRKoMB6G7o1liMpThXM4zi-9Ln1_BEtJgQzBVguVGEMWWBJNH9oBL5YVLGP7jUGjD8hEKsu4sBpymAwEeSAN4Dkj44M6Fk8WahsRMY7wd-HNqrK94xB8WIg9dK4SzPOv9VixdnpJ0jDXdRL4aRA5Mk0UKORtuAotNDT74AS1YDShGa0SEuY_SnzUcG7GLuRJOWb91YFTyWt3BDucWNuMECfV0ygPqRMJSqu3ODRjw\n # jupyter配置\njupyter:\n image: jupyterlab:v1\n port: 8888\n namespace: default\n mountPath: /opt/notebooks/\n storage: 2Gi\n masterIp: http://172.20.32.185\n# tensorBoard配置\ntensorBoard:\n image: activeeon/tensorboard:latest\n port: 6006\n mountPath: /logs/\n masterIp: http://172.20.32.185\nminio:\n endpoint: minio.argo.svc:9000\n accessKey: admin\n secretKey: qazxc123456.\n\nharbor:\n bucketName: tempimagefile\n repository: testlib\n harborUrl: 172.20.32.187\n harborUser: admin\n harborpassword: Harbor12345\n deploymentName: docker-push-deployment\n serviceNS: argo', 'f429de86888a8189421b79a87f403d0e', '2024-04-02 03:43:55', '2024-04-02 11:43:55', 'nacos', '172.20.32.185', 'U', '', '');
INSERT INTO `his_config_info` VALUES (11, 18, 'management-platform-dev.yml', 'DEFAULT_GROUP', '', 'spring:\n # 文件上传\n servlet:\n multipart:\n # 单个文件大小\n max-file-size: 20GB\n # 设置总上传的文件大小\n max-request-size: 20GB\n redis:\n host: redis-redis-ha.argo.svc\n port: 6379\n password:\n # 数据源\n datasource:\n # Druid StatViewServlet配置\n druid:\n stat-view-servlet:\n # 默认true 内置监控页面首页/druid/index.html\n enabled: true\n initial-size: 20\n max-active: 60\n min-idle: 20\n max-wait: 30000\n dynamic:\n primary: master\n datasource:\n master:\n url: jdbc:mysql://mysql.argo.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true\n username: root\n password: qazxc123456.\n type: com.alibaba.druid.pool.DruidDataSource\n driverClassName: com.mysql.cj.jdbc.Driver\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.management-platform\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n# argo\n# argo\nargo:\n url: http://pipeline-convert-service.ci4s-test.svc:80\n convert: /api/v1/workflow/convert\n workflowRun: /api/v1/workflow/run\n workflowStatus: /api/v1/workflow/getWorkflow \n workflowTermination: /api/v1/workflow/terminate\n workflowLog: /api/v1/workflow/getWorkflowLog\n workflowRealTimeLog: /api/v1/workflow/getRealtimeWorkflowLog\n workflowCopy: /api/v1/workflow/copy\n workflowPodLog: /api/v1/workflow/getLogByPod \n ins:\n logsLines: 200\n# 流水线配置\npipeline:\n control_strategy: \'{\"max_run_time\":{\"type\":\"str\",\"label\":\"超时中断\",\"item_type\":\"\",\"value\":\"2h\"},\"retry_times\":{\"type\":\"str\",\"item_type\":\"\",\"label\":\"重试次数\",\"value\":\"1\"}}\'\n\nk8s:\n storageClassName: storage-nfs\n http: apiserver.cluster.local:6443\n token: eyJhbGciOiJSUzI1NiIsImtpZCI6IlRrRURCNEZ0TG1iQmd0UW05Mk9weGFHdERCQlBXUlBKRS14WTI2WmRLd28ifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJrdWJlLXN5c3RlbSIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VjcmV0Lm5hbWUiOiJuYW1lc3BhY2UtY29udHJvbGxlci10b2tlbi10dnRwbiIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJuYW1lc3BhY2UtY29udHJvbGxlciIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50LnVpZCI6IjAzOTVlZGRmLWZjNGYtNDM0MS05ODdhLTlmNjgyOWEyMmQ0YyIsInN1YiI6InN5c3RlbTpzZXJ2aWNlYWNjb3VudDprdWJlLXN5c3RlbTpuYW1lc3BhY2UtY29udHJvbGxlciJ9.nnoplRdA1OoPcqkt2fr1h4XYWAsaFw6XPkGm35CL3_pNIllttf99JyYAcNDhTB23eeu7qOz_afF760cMaVWA2itxYaRzbm-9qkySklOsdF3hHFRKoMB6G7o1liMpThXM4zi-9Ln1_BEtJgQzBVguVGEMWWBJNH9oBL5YVLGP7jUGjD8hEKsu4sBpymAwEeSAN4Dkj44M6Fk8WahsRMY7wd-HNqrK94xB8WIg9dK4SzPOv9VixdnpJ0jDXdRL4aRA5Mk0UKORtuAotNDT74AS1YDShGa0SEuY_SnzUcG7GLuRJOWb91YFTyWt3BDucWNuMECfV0ygPqRMJSqu3ODRjw\n # jupyter配置\njupyter:\n image: jupyterlab:v1\n port: 8888\n namespace: default\n mountPath: /opt/notebooks/\n storage: 2Gi\n masterIp: http://172.20.32.185\n# tensorBoard配置\ntensorBoard:\n image: activeeon/tensorboard:latest\n port: 6006\n mountPath: /logs/\n masterIp: http://172.20.32.185\nminio:\n endpoint: minio.argo.svc:9000\n accessKey: admin\n secretKey: qazxc123456.\n\nharbor:\n bucketName: tempimagefile\n repository: testlib\n harborUrl: 172.20.32.187\n harborUser: admin\n harborpassword: Harbor12345\n deploymentName: docker-push-deployment\n serviceNS: argo', '45649c8d0269e24b2a7fe377cae21434', '2024-04-02 03:45:14', '2024-04-02 11:45:15', 'nacos', '172.20.32.185', 'U', '', '');
INSERT INTO `his_config_info` VALUES (5, 19, 'ruoyi-system-dev.yml', 'DEFAULT_GROUP', '', '# spring配置\nspring:\n redis:\n host: redis-redis-ha.ci4s-test.svc\n port: 6379\n password:\n datasource:\n druid:\n stat-view-servlet:\n enabled: true\n loginUsername: admin\n loginPassword: 123456\n dynamic:\n druid:\n initial-size: 5\n min-idle: 5\n maxActive: 20\n maxWait: 60000\n connectTimeout: 30000\n socketTimeout: 60000\n timeBetweenEvictionRunsMillis: 60000\n minEvictableIdleTimeMillis: 300000\n validationQuery: SELECT 1 FROM DUAL\n testWhileIdle: true\n testOnBorrow: false\n testOnReturn: false\n poolPreparedStatements: true\n maxPoolPreparedStatementPerConnectionSize: 20\n filters: stat,slf4j\n connectionProperties: druid.stat.mergeSql\\=true;druid.stat.slowSqlMillis\\=5000\n datasource:\n # 主库数据源\n master:\n driver-class-name: com.mysql.cj.jdbc.Driver\n url: jdbc:mysql://mysql.ci4s-test.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8\n username: root\n password: qazxc123456.\n # 从库数据源\n # slave:\n # username: \n # password: \n # url: \n # driver-class-name: \n\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.system\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip', '920f6fe2d7721e537716c9949d14a0f4', '2024-04-02 06:15:53', '2024-04-02 14:15:54', 'nacos', '172.20.32.185', 'U', '', '');
INSERT INTO `his_config_info` VALUES (11, 20, 'management-platform-dev.yml', 'DEFAULT_GROUP', '', 'spring:\n # 文件上传\n servlet:\n multipart:\n # 单个文件大小\n max-file-size: 20GB\n # 设置总上传的文件大小\n max-request-size: 20GB\n redis:\n host: redis-redis-ha.argo.svc\n port: 6379\n password:\n # 数据源\n datasource:\n # Druid StatViewServlet配置\n druid:\n stat-view-servlet:\n # 默认true 内置监控页面首页/druid/index.html\n enabled: true\n initial-size: 20\n max-active: 60\n min-idle: 20\n max-wait: 30000\n dynamic:\n primary: master\n datasource:\n master:\n url: jdbc:mysql://mysql.argo.svc:3306/ry-ci4s?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true\n username: root\n password: qazxc123456.\n type: com.alibaba.druid.pool.DruidDataSource\n driverClassName: com.mysql.cj.jdbc.Driver\n# mybatis配置\nmybatis:\n # 搜索指定包别名\n typeAliasesPackage: com.ruoyi.management-platform\n # 配置mapper的扫描,找到所有的mapper.xml映射文件\n mapperLocations: classpath:mapper/**/*.xml\n\n# swagger配置\nswagger:\n title: 系统模块接口文档\n license: Powered By ruoyi\n licenseUrl: https://ruoyi.vip\n# argo\n# argo\nargo:\n url: http://pipeline-convert-service.argo.svc:80\n convert: /api/v1/workflow/convert\n workflowRun: /api/v1/workflow/run\n workflowStatus: /api/v1/workflow/getWorkflow \n workflowTermination: /api/v1/workflow/terminate\n workflowLog: /api/v1/workflow/getWorkflowLog\n workflowRealTimeLog: /api/v1/workflow/getRealtimeWorkflowLog\n workflowCopy: /api/v1/workflow/copy\n workflowPodLog: /api/v1/workflow/getLogByPod \n ins:\n logsLines: 200\n# 流水线配置\npipeline:\n control_strategy: \'{\"max_run_time\":{\"type\":\"str\",\"label\":\"超时中断\",\"item_type\":\"\",\"value\":\"2h\"},\"retry_times\":{\"type\":\"str\",\"item_type\":\"\",\"label\":\"重试次数\",\"value\":\"1\"}}\'\n\nk8s:\n storageClassName: storage-nfs\n http: apiserver.cluster.local:6443\n token: eyJhbGciOiJSUzI1NiIsImtpZCI6IlRrRURCNEZ0TG1iQmd0UW05Mk9weGFHdERCQlBXUlBKRS14WTI2WmRLd28ifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOiJrdWJlLXN5c3RlbSIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VjcmV0Lm5hbWUiOiJuYW1lc3BhY2UtY29udHJvbGxlci10b2tlbi10dnRwbiIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50Lm5hbWUiOiJuYW1lc3BhY2UtY29udHJvbGxlciIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VydmljZS1hY2NvdW50LnVpZCI6IjAzOTVlZGRmLWZjNGYtNDM0MS05ODdhLTlmNjgyOWEyMmQ0YyIsInN1YiI6InN5c3RlbTpzZXJ2aWNlYWNjb3VudDprdWJlLXN5c3RlbTpuYW1lc3BhY2UtY29udHJvbGxlciJ9.nnoplRdA1OoPcqkt2fr1h4XYWAsaFw6XPkGm35CL3_pNIllttf99JyYAcNDhTB23eeu7qOz_afF760cMaVWA2itxYaRzbm-9qkySklOsdF3hHFRKoMB6G7o1liMpThXM4zi-9Ln1_BEtJgQzBVguVGEMWWBJNH9oBL5YVLGP7jUGjD8hEKsu4sBpymAwEeSAN4Dkj44M6Fk8WahsRMY7wd-HNqrK94xB8WIg9dK4SzPOv9VixdnpJ0jDXdRL4aRA5Mk0UKORtuAotNDT74AS1YDShGa0SEuY_SnzUcG7GLuRJOWb91YFTyWt3BDucWNuMECfV0ygPqRMJSqu3ODRjw\n # jupyter配置\njupyter:\n image: jupyterlab:v1\n port: 8888\n namespace: default\n mountPath: /opt/notebooks/\n storage: 2Gi\n masterIp: http://172.20.32.185\n# tensorBoard配置\ntensorBoard:\n image: activeeon/tensorboard:latest\n port: 6006\n mountPath: /logs/\n masterIp: http://172.20.32.185\nminio:\n endpoint: minio.argo.svc:9000\n accessKey: admin\n secretKey: qazxc123456.\n\nharbor:\n bucketName: tempimagefile\n repository: testlib\n harborUrl: 172.20.32.187\n harborUser: admin\n harborpassword: Harbor12345\n deploymentName: docker-push-deployment\n serviceNS: argo', 'bedb27aaffd384e7c890a82da7d4700e', '2024-04-02 06:16:07', '2024-04-02 14:16:08', 'nacos', '172.20.32.185', 'U', '', '');

-- ----------------------------
-- Table structure for permissions
-- ----------------------------
DROP TABLE IF EXISTS `permissions`;
CREATE TABLE `permissions` (
`role` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`resource` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`action` varchar(8) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
UNIQUE INDEX `uk_role_permission`(`role`, `resource`, `action`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;

-- ----------------------------
-- Records of permissions
-- ----------------------------

-- ----------------------------
-- Table structure for roles
-- ----------------------------
DROP TABLE IF EXISTS `roles`;
CREATE TABLE `roles` (
`username` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`role` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
UNIQUE INDEX `idx_user_role`(`username`, `role`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;

-- ----------------------------
-- Records of roles
-- ----------------------------
INSERT INTO `roles` VALUES ('nacos', 'ROLE_ADMIN');

-- ----------------------------
-- Table structure for tenant_capacity
-- ----------------------------
DROP TABLE IF EXISTS `tenant_capacity`;
CREATE TABLE `tenant_capacity` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'Tenant ID',
`quota` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '配额,0表示使用默认值',
`usage` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '使用量',
`max_size` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '单个配置大小上限,单位为字节,0表示使用默认值',
`max_aggr_count` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '聚合子配置最大个数',
`max_aggr_size` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '单个聚合数据的子配置大小上限,单位为字节,0表示使用默认值',
`max_history_count` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '最大变更历史数量',
`gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_tenant_id`(`tenant_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '租户容量信息表' ROW_FORMAT = DYNAMIC;

-- ----------------------------
-- Records of tenant_capacity
-- ----------------------------

-- ----------------------------
-- Table structure for tenant_info
-- ----------------------------
DROP TABLE IF EXISTS `tenant_info`;
CREATE TABLE `tenant_info` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`kp` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'kp',
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT 'tenant_id',
`tenant_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT 'tenant_name',
`tenant_desc` varchar(256) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'tenant_desc',
`create_source` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'create_source',
`gmt_create` bigint(20) NOT NULL COMMENT '创建时间',
`gmt_modified` bigint(20) NOT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_tenant_info_kptenantid`(`kp`, `tenant_id`) USING BTREE,
INDEX `idx_tenant_id`(`tenant_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'tenant_info' ROW_FORMAT = DYNAMIC;

-- ----------------------------
-- Records of tenant_info
-- ----------------------------

-- ----------------------------
-- Table structure for users
-- ----------------------------
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`username` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`password` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
`enabled` tinyint(1) NOT NULL,
PRIMARY KEY (`username`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = DYNAMIC;

-- ----------------------------
-- Records of users
-- ----------------------------
INSERT INTO `users` VALUES ('nacos', '$2a$10$3IlH08injUAkk5yuIFV39.MCkOXLFOeAXsAeStT65xMZqZ9ZkyvXm', 1);

SET FOREIGN_KEY_CHECKS = 1;

+ 0
- 248
sql/nacos-ci4s-config_2-240104.sql
File diff suppressed because it is too large
View File


sql/ry-ci4s.sql
File diff suppressed because it is too large
View File


+ 0
- 878
sql/ry-ci4s_20240104.sql
File diff suppressed because it is too large
View File


Loading…
Cancel
Save