大量更新
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -1,4 +0,0 @@
|
||||
<changelist name="Uncommitted_changes_before_Update_at_2025_05_15_10_33_[Changes]" date="1747276416699" recycled="false" toDelete="true">
|
||||
<option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Uncommitted_changes_before_Update_at_2025_05_15_10_33_[Changes]/shelved.patch" />
|
||||
<option name="DESCRIPTION" value="Uncommitted changes before Update at 2025/05/15 10:33 [Changes]" />
|
||||
</changelist>
|
||||
1
.idea/sqldialects.xml
generated
1
.idea/sqldialects.xml
generated
@@ -2,6 +2,7 @@
|
||||
<project version="4">
|
||||
<component name="SqlDialectMappings">
|
||||
<file url="file://$PROJECT_DIR$/80-202603-山东潍坊滨海GA/all_tables_demo_0326(1).sql" dialect="SQLite" />
|
||||
<file url="file://$PROJECT_DIR$/84-202605-北京三河测试/sense_adapter_v2.3.0_init_mysql.sql" dialect="SQLite" />
|
||||
<file url="file://$PROJECT_DIR$/999-数据库脚本/archive/nacos-2.1.2-ddl.sql" dialect="SQLite" />
|
||||
<file url="file://$PROJECT_DIR$/999-数据库脚本/监管服务/2.3/1node_table_init_v2.3.sql" dialect="SQLite" />
|
||||
<file url="file://$PROJECT_DIR$/999-数据库脚本/监管服务/2.3/3nodes_table_init_v2.3.sql" dialect="SQLite" />
|
||||
|
||||
5781
.idea/workspace.xml
generated
5781
.idea/workspace.xml
generated
File diff suppressed because it is too large
Load Diff
@@ -10,13 +10,12 @@ all_server_list=(dev-worker-01 dev-worker-02 dev-worker-03 dev-worker-05 dev-wor
|
||||
|
||||
all_server_list=(192.168.35.105 192.168.35.114 192.168.35.115 192.168.35.55 192.168.35.86 192.168.35.89 192.168.35.93 192.168.35.95 192.168.35.96 192.168.35.101 192.168.35.103 192.168.35.104 192.168.40.53 192.168.40.54 192.168.40.55)
|
||||
|
||||
|
||||
all_server_list=(dev-worker-01 dev-worker-02 dev-worker-03 dev-worker-04 dev-worker-05 dev-worker-06 dev-worker-07 dev-worker-08 dev-worker-09)
|
||||
for server in "${all_server_list[@]}"; do
|
||||
result=$(ssh root@"$server" "df -TH | awk '\$6+0 > 60'| grep -v nfs")
|
||||
if [ -n "$result" ]; then
|
||||
echo "server is $server"
|
||||
echo "$result"
|
||||
echo "-----------------------------"
|
||||
fi
|
||||
echo "server is ${server}"
|
||||
|
||||
ssh root@"${server}" "timedatectl status"
|
||||
done
|
||||
|
||||
|
||||
|
||||
8
0-archived/41-202410-珠海横琴/260616-漏洞修复.md
Normal file
8
0-archived/41-202410-珠海横琴/260616-漏洞修复.md
Normal file
@@ -0,0 +1,8 @@
|
||||
我在一个Ubuntu 22.04.4 LTS的服务器上面出现了下面的漏洞
|
||||
|
||||
runc 文件描述符泄漏导致容器逃逸漏洞(CVE-2024-21626)
|
||||
|
||||
请给出离线修复的方式,不需要重启docker,只需要应付安全检查
|
||||
|
||||
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/middle_supervisor/docker=cmii=redis=7.4.3-debian-12-r0.tar.gz
|
||||
@@ -5,8 +5,7 @@ metadata:
|
||||
namespace: szgz
|
||||
data:
|
||||
server_config_docker.ini: >
|
||||
#minio=mc alias set minIO https://oss.demo.uavcmlc.com:18000/ cmii
|
||||
B#923fC7mk
|
||||
#minio=mc alias set demo https://oss.demo.uavcmlc.com cmii B#923fC7mk
|
||||
|
||||
minio=mc alias set minIO http://172.31.2.7:9000/ cmii B#923fC7mk
|
||||
|
||||
|
||||
@@ -24,3 +24,9 @@ do
|
||||
done
|
||||
|
||||
ssh root@192.168.40.50 <<< 'scyd@lab1234'
|
||||
|
||||
|
||||
192.168.40.58
|
||||
192.168.40.64
|
||||
root
|
||||
SuperCyy@123
|
||||
155
70-202511-XA低空平台/real-nginx-proxy.conf
Normal file
155
70-202511-XA低空平台/real-nginx-proxy.conf
Normal file
@@ -0,0 +1,155 @@
|
||||
upstream cc_server {
|
||||
ip_hash;
|
||||
server 10.22.48.3:30500;
|
||||
server 10.22.48.4:30500;
|
||||
server 10.22.48.5:30500;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443 ssl http2;
|
||||
server_name uav.xadcity.com;
|
||||
|
||||
ssl_session_timeout 1d;
|
||||
ssl_session_cache shared:MozSSL:10m; # about 40000 sessions
|
||||
ssl_session_tickets off;
|
||||
ssl_protocols TLSv1.2 TLSv1.3;
|
||||
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
|
||||
ssl_prefer_server_ciphers off;
|
||||
|
||||
ssl_certificate /etc/nginx/conf.d/ssl_key/x.xadcity.com.cert.pem;
|
||||
ssl_certificate_key /etc/nginx/conf.d/ssl_key/x.xadcity.com.key.pem;
|
||||
|
||||
location / {
|
||||
proxy_pass http://cc_server;
|
||||
client_max_body_size 5120m;
|
||||
client_body_buffer_size 5120m;
|
||||
client_body_timeout 6000s;
|
||||
proxy_send_timeout 10000s;
|
||||
proxy_read_timeout 10000s;
|
||||
proxy_connect_timeout 600s;
|
||||
proxy_max_temp_file_size 5120m;
|
||||
proxy_request_buffering on;
|
||||
proxy_buffering off;
|
||||
proxy_buffer_size 4k;
|
||||
proxy_buffers 4 12k;
|
||||
proxy_set_header Host xayd.fakedomain.io;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
}
|
||||
location /center/ws {
|
||||
proxy_pass http://10.22.48.3:32083/mqtt;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Sec-WebSocket-Protocol mqtt;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "Upgrade";
|
||||
proxy_set_header X-real-ip $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
}
|
||||
location /center/storage/ {
|
||||
proxy_pass http://10.22.48.3:38989/storage/;
|
||||
}
|
||||
location /aicore/client/aiware/order/reportAiRecord {
|
||||
proxy_pass http://10.22.48.3:31792/client/aiware/order/reportAiRecord;
|
||||
}
|
||||
location /aicore/client/aiware/order/reportAilmge {
|
||||
proxy_pass http://10.22.48.3:31792/client/aiware/order/reportAilmge;
|
||||
}
|
||||
location /api/mqtt_ws2/token {
|
||||
proxy_pass http://10.22.48.3:38083/mqtt;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Sec-WebSocket-Protocol mqtt;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "Upgrade";
|
||||
proxy_set_header X-real-ip $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $remote_addr;
|
||||
}
|
||||
location /rtc/v1/ {
|
||||
add_header Access-Control-Allow-Headers X-Requested-With;
|
||||
add_header Access-Control-Allow-Methods GET,POST,OPTIONS;
|
||||
proxy_pass http://127.0.0.1:30985/rtc/v1/;
|
||||
}
|
||||
location /_AMapService/v4/map/styles {
|
||||
set $args "$args&jscode=cf66cea95bdcdfcf8048456b36f357a1";
|
||||
proxy_pass https://webapi.amap.com/v4/ap/styles;
|
||||
}
|
||||
|
||||
location /_AMapService/ {
|
||||
set $args "$args&jscode=cf66cea95bdcdfcf8048456b36f357a1";
|
||||
proxy_pass https://restapi.amap.com/;
|
||||
}
|
||||
|
||||
location ~ ^/.*/(actuator|swagger-resources|api-docs|env|ping|health)(/|$) {
|
||||
return 403;
|
||||
}
|
||||
location /zlm/flv/ {
|
||||
proxy_pass http://10.22.48.6:7088/;
|
||||
}
|
||||
location /zlm/hls/ {
|
||||
proxy_pass http://10.22.48.6:7088/zlm/hls/;
|
||||
}
|
||||
location /zlm/webrtc {
|
||||
proxy_pass http://10.22.48.6:7088/index/api/webrtc;
|
||||
}
|
||||
location /zlm/whip {
|
||||
proxy_pass http://10.22.48.6:7088/index/api/whip;
|
||||
}
|
||||
|
||||
# 2026年3月17日 吴云jiang
|
||||
location /converge/bigdata/download/ {
|
||||
# 使用 rewrite + break 剥离前缀,同时保留 URL 编码(避免 %2F 被二次编码)
|
||||
rewrite ^/converge/bigdata/download/(.*)$ /$1 break;
|
||||
|
||||
proxy_pass http://10.22.48.7:39010/;
|
||||
|
||||
# 关键:必须将 Host 固定为 MinIO 后端地址,否则签名校验失败
|
||||
proxy_set_header Host 10.22.48.7:39010;
|
||||
|
||||
# 查询字符串(AWS 签名参数)由 nginx 自动透传,无需额外配置
|
||||
proxy_pass_request_headers on;
|
||||
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
|
||||
# 关闭缓冲,适合大文件(如 GeoTIFF)流式传输
|
||||
proxy_buffering off;
|
||||
proxy_request_buffering off;
|
||||
|
||||
# 大文件下载超时设置
|
||||
proxy_connect_timeout 60s;
|
||||
proxy_send_timeout 300s;
|
||||
proxy_read_timeout 300s;
|
||||
}
|
||||
|
||||
## 微信小程序
|
||||
location /sgTVLHpAoG.txt {
|
||||
alias /etc/nginx/conf.d/ssl_key/sgTVLHpAoG.txt;
|
||||
allow all;
|
||||
}
|
||||
|
||||
## CIM底图
|
||||
location /player {
|
||||
proxy_pass http://144.7.88.50:8081/player;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "Upgrade";
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
|
||||
# WebSocket 超时设置
|
||||
proxy_read_timeout 3600s;
|
||||
proxy_send_timeout 3600s;
|
||||
}
|
||||
|
||||
location /3D/ {
|
||||
alias /data/frontend/dist/;
|
||||
try_files $uri $uri/ /3D/index.html;
|
||||
index index.html;
|
||||
# http2 on;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,6 +1,8 @@
|
||||
|
||||
144.7.97.167
|
||||
|
||||
E@lIR4#Ztkln
|
||||
|
||||
mv agent-wdd_linux_amd64 /usr/local/bin/agent-wdd
|
||||
chmod +x /usr/local/bin/agent-wdd
|
||||
|
||||
|
||||
174
71-202601-XA监管平台/2.3.4-b版本/2.3.3-b新增微服务/cmii-uas-airespace.yaml
Normal file
174
71-202601-XA监管平台/2.3.4-b版本/2.3.3-b新增微服务/cmii-uas-airespace.yaml
Normal file
@@ -0,0 +1,174 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: cmii-uas-airspace
|
||||
namespace: xa-dcity-uas-260116
|
||||
labels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-airspace
|
||||
octopus/control: backend-app-1.0.0
|
||||
app.kubernetes.io/managed-by: octopus
|
||||
app.kubernetes.io/app-version: uas-2.3.3
|
||||
spec:
|
||||
replicas: 1
|
||||
strategy:
|
||||
rollingUpdate:
|
||||
maxUnavailable: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-airspace
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-airspace
|
||||
spec:
|
||||
affinity:
|
||||
nodeAffinity:
|
||||
requiredDuringSchedulingIgnoredDuringExecution:
|
||||
nodeSelectorTerms:
|
||||
- matchExpressions:
|
||||
- key: uavcloud.env
|
||||
operator: In
|
||||
values:
|
||||
- demo
|
||||
imagePullSecrets:
|
||||
- name: harborsecret
|
||||
containers:
|
||||
- name: cmii-uas-airspace
|
||||
image: 10.22.57.8:8033/cmii/cmii-uas-airspace:2.3.3-b
|
||||
imagePullPolicy: Always
|
||||
env:
|
||||
- name: K8S_NAMESPACE
|
||||
value: zyly-app
|
||||
- name: APPLICATION_NAME
|
||||
value: cmii-uas-airspace
|
||||
- name: CUST_JAVA_OPTS
|
||||
value: "-Xms200m -Xmx1500m -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -Dlog4j2.formatMsgNoLookups=true -Duser.timezone=Asia/Shanghai"
|
||||
- name: NACOS_REGISTRY
|
||||
value: "helm-nacos:8848"
|
||||
- name: NACOS_DISCOVERY_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.podIP
|
||||
- name: NACOS_DISCOVERY_PORT
|
||||
value: "8080"
|
||||
- name: BIZ_CONFIG_GROUP
|
||||
value: uas-2.3
|
||||
- name: SYS_CONFIG_GROUP
|
||||
value: uas-2.3
|
||||
- name: NACOS_USERNAME
|
||||
value: "developer"
|
||||
- name: NACOS_PASSWORD
|
||||
value: "Deve@9128201"
|
||||
- name: IMAGE_NAME
|
||||
value: uas-2.3
|
||||
- name: POD_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: metadata.name
|
||||
- name: POD_NAMESPACE
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: metadata.namespace
|
||||
- name: NODE_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
- name: NODE_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.hostIP
|
||||
- name: LIMIT_CPU
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-airspace
|
||||
resource: limits.cpu
|
||||
- name: LIMIT_MEMORY
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-airspace
|
||||
resource: limits.memory
|
||||
- name: REQUEST_CPU
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-airspace
|
||||
resource: requests.cpu
|
||||
- name: REQUEST_MEMORY
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-airspace
|
||||
resource: requests.memory
|
||||
ports:
|
||||
- name: pod-port
|
||||
containerPort: 8080
|
||||
protocol: TCP
|
||||
resources:
|
||||
limits:
|
||||
memory: 2Gi
|
||||
cpu: "2"
|
||||
requests:
|
||||
memory: 200Mi
|
||||
cpu: 200m
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /cmii/health
|
||||
port: pod-port
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
timeoutSeconds: 5
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /cmii/health
|
||||
port: pod-port
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
timeoutSeconds: 5
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
startupProbe:
|
||||
httpGet:
|
||||
path: /cmii/health
|
||||
port: pod-port
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
timeoutSeconds: 3
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
failureThreshold: 5
|
||||
volumeMounts:
|
||||
- name: nfs-backend-log-volume
|
||||
mountPath: /cmii/logs
|
||||
readOnly: false
|
||||
subPath: zyly-app/cmii-uas-airspace
|
||||
volumes:
|
||||
- name: nfs-backend-log-volume
|
||||
persistentVolumeClaim:
|
||||
claimName: nfs-backend-log-pvc
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: cmii-uas-airspace
|
||||
namespace: xa-dcity-uas-260116
|
||||
labels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-airspace
|
||||
octopus/control: backend-app-1.0.0
|
||||
app.kubernetes.io/managed-by: octopus
|
||||
app.kubernetes.io/app-version: uas-2.4
|
||||
spec:
|
||||
type: ClusterIP
|
||||
selector:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-airspace
|
||||
ports:
|
||||
- name: backend-tcp
|
||||
port: 8080
|
||||
protocol: TCP
|
||||
targetPort: 8080
|
||||
174
71-202601-XA监管平台/2.3.4-b版本/2.3.3-b新增微服务/cmii-uas-foundation.yaml
Normal file
174
71-202601-XA监管平台/2.3.4-b版本/2.3.3-b新增微服务/cmii-uas-foundation.yaml
Normal file
@@ -0,0 +1,174 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: cmii-uas-foundation
|
||||
namespace: xa-dcity-uas-260116
|
||||
labels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-foundation
|
||||
octopus/control: backend-app-1.0.0
|
||||
app.kubernetes.io/managed-by: octopus
|
||||
app.kubernetes.io/app-version: uas-2.3.3
|
||||
spec:
|
||||
replicas: 1
|
||||
strategy:
|
||||
rollingUpdate:
|
||||
maxUnavailable: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-foundation
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-foundation
|
||||
spec:
|
||||
affinity:
|
||||
nodeAffinity:
|
||||
requiredDuringSchedulingIgnoredDuringExecution:
|
||||
nodeSelectorTerms:
|
||||
- matchExpressions:
|
||||
- key: uavcloud.env
|
||||
operator: In
|
||||
values:
|
||||
- demo
|
||||
imagePullSecrets:
|
||||
- name: harborsecret
|
||||
containers:
|
||||
- name: cmii-uas-foundation
|
||||
image: 10.22.57.8:8033/cmii/cmii-uas-foundation:2.3.3-b
|
||||
imagePullPolicy: Always
|
||||
env:
|
||||
- name: K8S_NAMESPACE
|
||||
value: zyly-app
|
||||
- name: APPLICATION_NAME
|
||||
value: cmii-uas-foundation
|
||||
- name: CUST_JAVA_OPTS
|
||||
value: "-Xms200m -Xmx1500m -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -Dlog4j2.formatMsgNoLookups=true -Duser.timezone=Asia/Shanghai"
|
||||
- name: NACOS_REGISTRY
|
||||
value: "helm-nacos:8848"
|
||||
- name: NACOS_DISCOVERY_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.podIP
|
||||
- name: NACOS_DISCOVERY_PORT
|
||||
value: "8080"
|
||||
- name: BIZ_CONFIG_GROUP
|
||||
value: uas-2.3
|
||||
- name: SYS_CONFIG_GROUP
|
||||
value: uas-2.3
|
||||
- name: NACOS_USERNAME
|
||||
value: "developer"
|
||||
- name: NACOS_PASSWORD
|
||||
value: "Deve@9128201"
|
||||
- name: IMAGE_NAME
|
||||
value: uas-2.3
|
||||
- name: POD_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: metadata.name
|
||||
- name: POD_NAMESPACE
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: metadata.namespace
|
||||
- name: NODE_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
- name: NODE_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.hostIP
|
||||
- name: LIMIT_CPU
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-foundation
|
||||
resource: limits.cpu
|
||||
- name: LIMIT_MEMORY
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-foundation
|
||||
resource: limits.memory
|
||||
- name: REQUEST_CPU
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-foundation
|
||||
resource: requests.cpu
|
||||
- name: REQUEST_MEMORY
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-foundation
|
||||
resource: requests.memory
|
||||
ports:
|
||||
- name: pod-port
|
||||
containerPort: 8080
|
||||
protocol: TCP
|
||||
resources:
|
||||
limits:
|
||||
memory: 2Gi
|
||||
cpu: "2"
|
||||
requests:
|
||||
memory: 200Mi
|
||||
cpu: 200m
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /cmii/health
|
||||
port: pod-port
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
timeoutSeconds: 5
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /cmii/health
|
||||
port: pod-port
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
timeoutSeconds: 5
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
startupProbe:
|
||||
httpGet:
|
||||
path: /cmii/health
|
||||
port: pod-port
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
timeoutSeconds: 3
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
failureThreshold: 5
|
||||
volumeMounts:
|
||||
- name: nfs-backend-log-volume
|
||||
mountPath: /cmii/logs
|
||||
readOnly: false
|
||||
subPath: zyly-app/cmii-uas-foundation
|
||||
volumes:
|
||||
- name: nfs-backend-log-volume
|
||||
persistentVolumeClaim:
|
||||
claimName: nfs-backend-log-pvc
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: cmii-uas-foundation
|
||||
namespace: xa-dcity-uas-260116
|
||||
labels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-foundation
|
||||
octopus/control: backend-app-1.0.0
|
||||
app.kubernetes.io/managed-by: octopus
|
||||
app.kubernetes.io/app-version: uas-2.4
|
||||
spec:
|
||||
type: ClusterIP
|
||||
selector:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-foundation
|
||||
ports:
|
||||
- name: backend-tcp
|
||||
port: 8080
|
||||
protocol: TCP
|
||||
targetPort: 8080
|
||||
174
71-202601-XA监管平台/2.3.4-b版本/2.3.3-b新增微服务/cmii-uas-la-defense.yaml
Normal file
174
71-202601-XA监管平台/2.3.4-b版本/2.3.3-b新增微服务/cmii-uas-la-defense.yaml
Normal file
@@ -0,0 +1,174 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: cmii-uas-la-defense
|
||||
namespace: xa-dcity-uas-260116
|
||||
labels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-la-defense
|
||||
octopus/control: backend-app-1.0.0
|
||||
app.kubernetes.io/managed-by: octopus
|
||||
app.kubernetes.io/app-version: uas-2.3.3
|
||||
spec:
|
||||
replicas: 1
|
||||
strategy:
|
||||
rollingUpdate:
|
||||
maxUnavailable: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-la-defense
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-la-defense
|
||||
spec:
|
||||
affinity:
|
||||
nodeAffinity:
|
||||
requiredDuringSchedulingIgnoredDuringExecution:
|
||||
nodeSelectorTerms:
|
||||
- matchExpressions:
|
||||
- key: uavcloud.env
|
||||
operator: In
|
||||
values:
|
||||
- demo
|
||||
imagePullSecrets:
|
||||
- name: harborsecret
|
||||
containers:
|
||||
- name: cmii-uas-la-defense
|
||||
image: 10.22.57.8:8033/cmii/cmii-uas-la-defense:2.3.3-b
|
||||
imagePullPolicy: Always
|
||||
env:
|
||||
- name: K8S_NAMESPACE
|
||||
value: zyly-app
|
||||
- name: APPLICATION_NAME
|
||||
value: cmii-uas-la-defense
|
||||
- name: CUST_JAVA_OPTS
|
||||
value: "-Xms200m -Xmx1500m -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -Dlog4j2.formatMsgNoLookups=true -Duser.timezone=Asia/Shanghai"
|
||||
- name: NACOS_REGISTRY
|
||||
value: "helm-nacos:8848"
|
||||
- name: NACOS_DISCOVERY_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.podIP
|
||||
- name: NACOS_DISCOVERY_PORT
|
||||
value: "8080"
|
||||
- name: BIZ_CONFIG_GROUP
|
||||
value: uas-2.3
|
||||
- name: SYS_CONFIG_GROUP
|
||||
value: uas-2.3
|
||||
- name: NACOS_USERNAME
|
||||
value: "developer"
|
||||
- name: NACOS_PASSWORD
|
||||
value: "Deve@9128201"
|
||||
- name: IMAGE_NAME
|
||||
value: uas-2.3
|
||||
- name: POD_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: metadata.name
|
||||
- name: POD_NAMESPACE
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: metadata.namespace
|
||||
- name: NODE_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
- name: NODE_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.hostIP
|
||||
- name: LIMIT_CPU
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-la-defense
|
||||
resource: limits.cpu
|
||||
- name: LIMIT_MEMORY
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-la-defense
|
||||
resource: limits.memory
|
||||
- name: REQUEST_CPU
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-la-defense
|
||||
resource: requests.cpu
|
||||
- name: REQUEST_MEMORY
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-la-defense
|
||||
resource: requests.memory
|
||||
ports:
|
||||
- name: pod-port
|
||||
containerPort: 8080
|
||||
protocol: TCP
|
||||
resources:
|
||||
limits:
|
||||
memory: 2Gi
|
||||
cpu: "2"
|
||||
requests:
|
||||
memory: 200Mi
|
||||
cpu: 200m
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /cmii/health
|
||||
port: pod-port
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
timeoutSeconds: 5
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /cmii/health
|
||||
port: pod-port
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
timeoutSeconds: 5
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
startupProbe:
|
||||
httpGet:
|
||||
path: /cmii/health
|
||||
port: pod-port
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
timeoutSeconds: 3
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
failureThreshold: 5
|
||||
volumeMounts:
|
||||
- name: nfs-backend-log-volume
|
||||
mountPath: /cmii/logs
|
||||
readOnly: false
|
||||
subPath: zyly-app/cmii-uas-la-defense
|
||||
volumes:
|
||||
- name: nfs-backend-log-volume
|
||||
persistentVolumeClaim:
|
||||
claimName: nfs-backend-log-pvc
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: cmii-uas-la-defense
|
||||
namespace: xa-dcity-uas-260116
|
||||
labels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-la-defense
|
||||
octopus/control: backend-app-1.0.0
|
||||
app.kubernetes.io/managed-by: octopus
|
||||
app.kubernetes.io/app-version: uas-2.4
|
||||
spec:
|
||||
type: ClusterIP
|
||||
selector:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-la-defense
|
||||
ports:
|
||||
- name: backend-tcp
|
||||
port: 8080
|
||||
protocol: TCP
|
||||
targetPort: 8080
|
||||
@@ -0,0 +1,174 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: cmii-uas-parser-worker
|
||||
namespace: xa-dcity-uas-260116
|
||||
labels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-parser-worker
|
||||
octopus/control: backend-app-1.0.0
|
||||
app.kubernetes.io/managed-by: octopus
|
||||
app.kubernetes.io/app-version: uas-2.3.3
|
||||
spec:
|
||||
replicas: 1
|
||||
strategy:
|
||||
rollingUpdate:
|
||||
maxUnavailable: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-parser-worker
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-parser-worker
|
||||
spec:
|
||||
affinity:
|
||||
nodeAffinity:
|
||||
requiredDuringSchedulingIgnoredDuringExecution:
|
||||
nodeSelectorTerms:
|
||||
- matchExpressions:
|
||||
- key: uavcloud.env
|
||||
operator: In
|
||||
values:
|
||||
- demo
|
||||
imagePullSecrets:
|
||||
- name: harborsecret
|
||||
containers:
|
||||
- name: cmii-uas-parser-worker
|
||||
image: 10.22.57.8:8033/cmii/cmii-uas-parser-worker:2.3.3-b
|
||||
imagePullPolicy: Always
|
||||
env:
|
||||
- name: K8S_NAMESPACE
|
||||
value: zyly-app
|
||||
- name: APPLICATION_NAME
|
||||
value: cmii-uas-parser-worker
|
||||
- name: CUST_JAVA_OPTS
|
||||
value: "-Xms200m -Xmx1500m -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -Dlog4j2.formatMsgNoLookups=true -Duser.timezone=Asia/Shanghai"
|
||||
- name: NACOS_REGISTRY
|
||||
value: "helm-nacos:8848"
|
||||
- name: NACOS_DISCOVERY_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.podIP
|
||||
- name: NACOS_DISCOVERY_PORT
|
||||
value: "8080"
|
||||
- name: BIZ_CONFIG_GROUP
|
||||
value: uas-2.3
|
||||
- name: SYS_CONFIG_GROUP
|
||||
value: uas-2.3
|
||||
- name: NACOS_USERNAME
|
||||
value: "developer"
|
||||
- name: NACOS_PASSWORD
|
||||
value: "Deve@9128201"
|
||||
- name: IMAGE_NAME
|
||||
value: uas-2.3
|
||||
- name: POD_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: metadata.name
|
||||
- name: POD_NAMESPACE
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: metadata.namespace
|
||||
- name: NODE_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: spec.nodeName
|
||||
- name: NODE_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.hostIP
|
||||
- name: LIMIT_CPU
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-parser-worker
|
||||
resource: limits.cpu
|
||||
- name: LIMIT_MEMORY
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-parser-worker
|
||||
resource: limits.memory
|
||||
- name: REQUEST_CPU
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-parser-worker
|
||||
resource: requests.cpu
|
||||
- name: REQUEST_MEMORY
|
||||
valueFrom:
|
||||
resourceFieldRef:
|
||||
containerName: cmii-uas-parser-worker
|
||||
resource: requests.memory
|
||||
ports:
|
||||
- name: pod-port
|
||||
containerPort: 8080
|
||||
protocol: TCP
|
||||
resources:
|
||||
limits:
|
||||
memory: 2Gi
|
||||
cpu: "2"
|
||||
requests:
|
||||
memory: 200Mi
|
||||
cpu: 200m
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /cmii/health
|
||||
port: pod-port
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
timeoutSeconds: 5
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /cmii/health
|
||||
port: pod-port
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
timeoutSeconds: 5
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
failureThreshold: 3
|
||||
startupProbe:
|
||||
httpGet:
|
||||
path: /cmii/health
|
||||
port: pod-port
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 60
|
||||
timeoutSeconds: 3
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
failureThreshold: 5
|
||||
volumeMounts:
|
||||
- name: nfs-backend-log-volume
|
||||
mountPath: /cmii/logs
|
||||
readOnly: false
|
||||
subPath: zyly-app/cmii-uas-parser-worker
|
||||
volumes:
|
||||
- name: nfs-backend-log-volume
|
||||
persistentVolumeClaim:
|
||||
claimName: nfs-backend-log-pvc
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: cmii-uas-parser-worker
|
||||
namespace: xa-dcity-uas-260116
|
||||
labels:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-parser-worker
|
||||
octopus/control: backend-app-1.0.0
|
||||
app.kubernetes.io/managed-by: octopus
|
||||
app.kubernetes.io/app-version: uas-2.4
|
||||
spec:
|
||||
type: ClusterIP
|
||||
selector:
|
||||
cmii.type: backend
|
||||
cmii.app: cmii-uas-parser-worker
|
||||
ports:
|
||||
- name: backend-tcp
|
||||
port: 8080
|
||||
protocol: TCP
|
||||
targetPort: 8080
|
||||
467
71-202601-XA监管平台/2.3.4-b版本/2.3.4-b-upgrade.sql
Normal file
467
71-202601-XA监管平台/2.3.4-b版本/2.3.4-b-upgrade.sql
Normal file
@@ -0,0 +1,467 @@
|
||||
DELETE FROM regulator_resource where 1=1;
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (100, 'MENU_COM', '通用配置', null, '', 0, '', null, false, 34, 1, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (101, 'MENU_MONITOR', '首页', null, '', 0, '', null, false, 35, 1, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (102, 'MENU_TRAFFIC', '空中交通', null, '', 0, '', null, false, 36, 1, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (103, 'MENU_SAFE', '安全防控', null, '', 0, '', null, false, 37, 1, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (104, 'MENU_INFRASTRUCTURE', '基础设施', null, '', 0, '', null, false, 38, 1, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (105, 'MENU_COMPREHENSIVE', '综合监管', null, '', 0, '', null, false, 40, 1, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (106, 'MENU_SYSTEM', '系统管理', null, '', 0, '', null, false, 41, 1, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (108, 'MENU_ALARM', '安全告警', null, '', 0, '', null, false, 42, 1, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (109, 'MENU_DATABASE', '基础底座', null, '', 0, '', null, false, 43, 1, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (110, 'ACTION_AI_AGENT_WINDOW', '智能体通用', null, '20250523新增按钮权限(2.1版本)
|
||||
20250530 这个不上2.1版本,
|
||||
20250805 上2.1.2版本', 1, '', null, false, 44, 1, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (111, 'MENU_DATA', '数据管理', null, '', 0, '', null, false, 39, 1, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10001, 'MENU_COM_MAP', '地图工具', null, '', 0, '', 100, false, 4, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10201, 'MENU_COMMAND_SCREEN', '监视指挥', null, '', 0, '', 102, false, 16, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10202, 'MENU_AIRSPACE_MANAGE', '空域管理', null, '', 0, '', 102, false, 17, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10203, 'MENU_PLAN', '计划管理', null, '', 0, '', 102, false, 18, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10204, 'MENU_FLY_MANAGE', '飞行调配', null, '', 0, '', 102, false, 19, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10205, 'MENU_METEOROLOGY', '气象服务', null, '仅超管可见', 0, '', 102, false, 20, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10301, 'MENU_COUNTER', '监控处置', null, '', 0, '', 103, false, 16, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10302, 'MENU_COUNTER_SJHF', '数据回放', null, '', 0, '', 103, false, 17, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10303, 'MENU_COUNTER_JDFX', '精度分析', null, '仅超管可见', 0, '', 103, false, 18, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10304, 'MENU_DEFENSE', '防区配置', null, '', 0, '', 103, false, 19, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10305, 'MENU_COUNTER_SBCZ', '识别查证', null, '20251202新增菜单2.3;', 0, '', 103, false, 20, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10401, 'MENU_DEVICE', '监视设备', null, '', 0, '', 104, false, 13, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10402, 'MENU_DETEDTCT_DEVICE', '探测识别设备', null, '', 0, '', 104, false, 14, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10403, 'MENU_UAV', '无人机管理', null, '', 0, '', 104, false, 16, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10404, 'MENU_DISPOSAL_DEVICE', '打击处置设备', null, '', 0, '', 104, false, 15, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10501, 'MENU_INSERT_SHARE', '数据接入与共享', null, '', 0, '', 105, false, 10, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10502, 'MENU_RESCUE', '应急救援', null, '', 0, '', 105, false, 11, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10503, 'MENU_RESCUE_APPROV', '资质审核', null, '', 0, '', 105, false, 12, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10601, 'MENU_USER', '用户管理', null, '', 0, '', 106, false, 7, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (10602, 'MENU_LOG', '日志查询', null, '', 0, '', 106, false, 8, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (11101, 'MENU_DATA_REPORT', '数据分析报表', null, '', 0, '', 111, false, 10, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (11102, 'MENU_DATA_GD', '光电数据', null, '', 0, '', 111, false, 11, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (11103, 'MENU_DATA_AREA', '空域数据', null, '', 0, '', 111, false, 12, 2, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1000101, 'ACTION_COM_MAP_WG', '网格', null, '', 1, '', 10001, false, 22, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1000102, 'ACTION_COM_MAP_MX', '模型开关', null, '', 1, '', 10001, false, 23, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1000103, 'ACTION_COM_MAP_DT', '底图', null, '', 1, '', 10001, false, 24, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1000104, 'ACTION_COM_MAP_SS', '搜索', null, '', 1, '', 10001, false, 25, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1000105, 'ACTION_COM_MAP_SZ', '地图设置', null, '', 1, '', 10001, false, 26, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1000106, 'ACTION_COM_MAP_LAYER', '图层', null, '', 1, '', 10001, false, 27, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1000107, 'ACTION_COM_MAP_TOOL', '工具', null, '', 1, '', 10001, false, 28, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1020201, 'MENU_AIRSPACE_DRAW', '空域规划', null, '', 0, '', 10202, false, 22, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1020202, 'MENU_AIRSPACE_CALCULATE', '空域计算', null, '', 0, '', 10202, false, 23, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1020203, 'MENU_ROUTE_PLAN', '航路规划', null, '', 0, '', 10202, false, 24, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1020204, 'MENU_GEO_DATA', '地图数据', null, '', 0, '', 10202, false, 25, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1020205, 'MENU_AIRSPACE_NOTE', '空域信息通知发布', null, '', 0, '', 10202, false, 26, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1020206, 'MENU_AIRSPACE_FLOW', '空域流量查询', null, '', 0, '', 10202, false, 27, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1020207, 'MENU_AREA_VERIFY', '空域验证区', null, '', 0, '', 10202, false, 28, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1020301, 'MENU_PLAN_ACTIVE', '用空计划接收和审批', null, '', 0, '', 10203, false, 7, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1020302, 'MENU_PLAN_RELEASE', '放飞申请审批', null, '', 0, '', 10203, false, 8, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1020401, 'MENU_FLY_CONFLICT', '空域冲突检测', null, '', 0, '', 10204, false, 4, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1040301, 'MENU_UAV_REGISTER', '注册无人机管理', null, '', 0, '', 10403, false, 13, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1040302, 'MENU_UAV_SIM', 'SIM卡管理', null, '', 0, '', 10403, false, 14, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1040303, 'MENU_UAV_ZS', '证书管理', null, '', 0, '', 10403, false, 15, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1040304, 'MENU_UAV_SCCS', '生产厂商管理', null, '', 0, '', 10403, false, 16, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1050101, 'MENU_FIRM_MANAGE', '厂商接入账号管理', null, '', 0, '', 10501, false, 7, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1050102, 'MENU_SHARE', '数据开放', null, '', 0, '', 10501, false, 8, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1050201, 'MENU_RESCUE_INFO', '应急救援信息管理', null, '', 0, '', 10502, false, 10, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1050202, 'MENU_RESCUE_CLYA', '应急救援处理预案', null, '', 0, '', 10502, false, 11, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1050203, 'MENU_RESCUE_SJHF', '飞行场景重构与分析', null, '', 0, '', 10502, false, 12, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1050301, 'MENU_RESCUE_APPROV_USER', '用户登记审核', null, '', 0, '', 10503, false, 10, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1050302, 'MENU_RESCUE_APPROV_OPERATOR', '操控员信息审核', null, '', 0, '', 10503, false, 11, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1050303, 'MENU_RESCUE_APPROV_UAV', '航空器信息审核', null, '', 0, '', 10503, false, 12, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1060101, 'MENU_USER_JGY', '监管员管理', null, '', 0, '', 10601, false, 10, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1060102, 'MENU_USER_YH', '普通用户管理', null, '', 0, '', 10601, false, 11, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1060103, 'MENU_USER_SEAT', '席位管理', null, '', 0, '', 10601, false, 12, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1110201, 'MENU_DATA_GD_OVERVIEW', '概览', null, '', 0, '', 11102, false, 7, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (1110202, 'MENU_DATA_GD_FILES', '图像文件管理', null, '', 0, '', 11102, false, 8, 3, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (104030301, 'MENU_UAV_ZS_CS', '厂商证书管理', null, '', 0, '', 1040303, false, 7, 4, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource (id, code, name, icon, `desc`, type, path, pid, is_del, `order`, level, create_at, create_by, update_at) VALUES (104030302, 'MENU_UAV_ZS_SB', '设备证书管理', null, '', 0, '', 1040303, false, 8, 4, '2026-05-21 16:39:05.853831', null, '2026-05-21 16:39:05.853831');
|
||||
|
||||
|
||||
DELETE FROM regulator_resource_api_mapping where 1=1;
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (1, 100, 'API_aa8afab378912b97f1638c7fd9eddf53', '2026-05-21 16:39:06.234761');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (2, 100, 'API_374302d70e22da1b5c99b458b08dee04', '2026-05-21 16:39:06.234765');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (3, 100, 'API_9ec4fc26caf25da67df3365d15dbe6fb', '2026-05-21 16:39:06.234766');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (4, 100, 'API_c48db3db60bd46f5c5e551aad9d61c24', '2026-05-21 16:39:06.234767');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (5, 100, 'API_699e61d0a0766f0616824a9890026637', '2026-05-21 16:39:06.234767');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (6, 100, 'API_e6265b97ec5052e9100926e5f0850f5d', '2026-05-21 16:39:06.234768');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (7, 1000102, 'API_a860fbb226fa1e26288cbe4fc30bbed3', '2026-05-21 16:39:06.234768');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (8, 1000103, 'API_4debdf67286194237d20c49d6d4f3996', '2026-05-21 16:39:06.234769');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (9, 1000103, 'API_e5c775414e9c09ab1674eb26f825888a', '2026-05-21 16:39:06.234770');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (10, 1000103, 'API_2ce793d5e0086e53c8a53d7cb3fc67ff', '2026-05-21 16:39:06.234770');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (11, 1000103, 'API_65c8e0ce621e76b8dae28363513606a8', '2026-05-21 16:39:06.234771');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (12, 1000106, 'API_f699e5ed752eb81965ac6b58f64d7c8d', '2026-05-21 16:39:06.234772');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (13, 1000106, 'API_d859cafa95d383505dd1cd877ba5ea02', '2026-05-21 16:39:06.234773');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (14, 1000107, 'API_52d46ff043235e7f8ac6f5f73f528c4b', '2026-05-21 16:39:06.234773');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (15, 1000107, 'API_2e83c1520d4524d4a72aa2b53ad67e2c', '2026-05-21 16:39:06.234774');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (16, 101, 'API_f8dd60b947bd22de9c8056f150e4cb2c', '2026-05-21 16:39:06.234774');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (17, 101, 'API_8bbb6bc57d4b7022af9ace2a833a11c5', '2026-05-21 16:39:06.234775');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (18, 101, 'API_d01ff30e4226c29d6249f1aadbd1cfe1', '2026-05-21 16:39:06.234784');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (19, 101, 'API_88d5098d7d0fdd4ee45b4b0c3f9dccd5', '2026-05-21 16:39:06.234785');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (20, 101, 'API_63cd0da1d5ce55cd9f216d8120b827ff', '2026-05-21 16:39:06.234785');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (21, 101, 'API_1978632f41bc6239f68b6561601bd9ab', '2026-05-21 16:39:06.234786');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (22, 101, 'API_5ec8c4bd705785bc92b5c8a78dd77574', '2026-05-21 16:39:06.234786');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (23, 101, 'API_48e5e2c64e0a255631262e413a5511a8', '2026-05-21 16:39:06.234787');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (24, 101, 'API_5fbd9cff2b19e19d694726f6afafeb0b', '2026-05-21 16:39:06.234788');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (25, 101, 'API_b4166ade20540117497fadbf4a6ba060', '2026-05-21 16:39:06.234789');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (26, 101, 'API_a2144c43d1e0e57e6841b0b981effd15', '2026-05-21 16:39:06.234789');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (27, 101, 'API_9dc15af1467fddc9f8709778949e7a60', '2026-05-21 16:39:06.234790');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (28, 101, 'API_a04dd86035a2e5a41fcf8f9377ce7186', '2026-05-21 16:39:06.234791');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (29, 101, 'API_2b337c4767a98b75c2e5de7b93275f46', '2026-05-21 16:39:06.234791');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (30, 101, 'API_10b5ddd446cdfa08f1719553a1ca1eda', '2026-05-21 16:39:06.234792');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (31, 101, 'API_a59299d1ed12d868da37f5e4f1416893', '2026-05-21 16:39:06.234793');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (32, 101, 'API_4242dad239e59cdb980373214740e564', '2026-05-21 16:39:06.234793');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (33, 101, 'API_4594550f371647d48d44635892fb4f7d', '2026-05-21 16:39:06.234794');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (34, 101, 'API_27973e5fe11d8588a7edb2ed85b1cb83', '2026-05-21 16:39:06.234794');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (35, 101, 'API_34477a1afe30fe1b2b61fec1718da871', '2026-05-21 16:39:06.234795');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (36, 101, 'API_863b3c7f840ded75db92319ed2773e1d', '2026-05-21 16:39:06.234796');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (37, 101, 'API_3225bddc2962e245a838ba8fb8622886', '2026-05-21 16:39:06.234796');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (38, 10201, 'API_185e825817b2b100612196ab9f75377b', '2026-05-21 16:39:06.234797');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (39, 10201, 'API_965377075bdecdf478c63fb94a535161', '2026-05-21 16:39:06.234798');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (40, 10201, 'API_1a61776a6caceb2339db7cdcdb241a73', '2026-05-21 16:39:06.234798');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (41, 10201, 'API_bc2456f42f9727f45b7f77e569d562a9', '2026-05-21 16:39:06.234799');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (42, 10201, 'API_ee51c703b2ac8985e376aee5c2eb77cb', '2026-05-21 16:39:06.234799');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (43, 10201, 'API_6157a356f31eb99d3d4337e189b5aa89', '2026-05-21 16:39:06.234800');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (44, 10201, 'API_b6cf2221eb6bad89309c96d71161616f', '2026-05-21 16:39:06.234800');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (45, 10201, 'API_ea4ca7102adc979557dc2d309993560b', '2026-05-21 16:39:06.234801');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (46, 10201, 'API_3999dddeeb85ca76c0439ea60abeea32', '2026-05-21 16:39:06.234801');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (47, 10201, 'API_9cd41d416494eb550b5df9726b125cc8', '2026-05-21 16:39:06.234802');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (48, 10201, 'API_638447f86df6fdfe67006fdbbe3b8f14', '2026-05-21 16:39:06.234802');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (49, 10201, 'API_fc399714997a209b45d64d24585f0f2a', '2026-05-21 16:39:06.234803');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (50, 10201, 'API_78eaea2cc157ab24cfe580859efe9471', '2026-05-21 16:39:06.234804');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (51, 10201, 'API_0afcd8544b65e59eba14f68c7251022c', '2026-05-21 16:39:06.234804');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (52, 10201, 'API_7ab9403b4ae2eae8a5dc76f744d6c3bb', '2026-05-21 16:39:06.234805');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (53, 10201, 'API_ad5639c5b5f1f770f743c2bdc2c6e762', '2026-05-21 16:39:06.234805');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (54, 10201, 'API_0753b9e94880d276869bec9bd396e15a', '2026-05-21 16:39:06.234806');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (55, 10201, 'API_68acdcc32f589c0f8db8947ba5f07ae5', '2026-05-21 16:39:06.234806');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (56, 10201, 'API_c6edf7c44e9d4f49cf26dbdea1315e02', '2026-05-21 16:39:06.234807');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (57, 10201, 'API_e53cdc995f0194ecae292f461de459fc', '2026-05-21 16:39:06.234807');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (58, 1020201, 'API_3225bddc2962e245a838ba8fb8622886', '2026-05-21 16:39:06.234808');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (59, 1020201, 'API_0bff30237a1de14a929f6c5e41158b1e', '2026-05-21 16:39:06.234808');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (60, 1020201, 'API_b57638a2dba0ea8aa47f0a47cd1998c6', '2026-05-21 16:39:06.234809');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (61, 1020201, 'API_c44514d5cf970244240924f75024c2a9', '2026-05-21 16:39:06.234809');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (62, 1020201, 'API_42b55976d4fb704ca7bb2df6565625c2', '2026-05-21 16:39:06.234810');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (63, 1020201, 'API_4d5dcd9180aa87eb6071d5692b9a4050', '2026-05-21 16:39:06.234811');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (64, 1020201, 'API_85b3df954d3ff6dbb07258dd4e91d8c9', '2026-05-21 16:39:06.234811');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (65, 1020201, 'API_e186224684ca41af9af743d7e38fc80e', '2026-05-21 16:39:06.234812');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (66, 1020201, 'API_82eced22075a1df95b0a2b70fbd9f905', '2026-05-21 16:39:06.234813');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (67, 1020201, 'API_1308e2bcedf47b538d45b15a0b3b7c5c', '2026-05-21 16:39:06.234814');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (68, 1020201, 'API_893720e4b59c3e6d8565ef1f31029f2b', '2026-05-21 16:39:06.234814');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (69, 1020205, 'API_cc48b9e51494c854fdf7bee06b6d35b3', '2026-05-21 16:39:06.234815');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (70, 1020205, 'API_f29f919454017a3989152a840de3a6d4', '2026-05-21 16:39:06.234815');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (71, 1020205, 'API_c2e3cdc395af1aefa8796bb60179f5e7', '2026-05-21 16:39:06.234816');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (72, 1020202, 'API_215a32537a9934e9d04124d108fb31c6', '2026-05-21 16:39:06.234816');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (73, 1020202, 'API_6840d674adff65bc4b6430ffbce4892f', '2026-05-21 16:39:06.234817');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (74, 1020202, 'API_974318b720f876eb92dd92574f377e13', '2026-05-21 16:39:06.234817');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (75, 1020202, 'API_bca520021299b4fea66343cd54b1a9e5', '2026-05-21 16:39:06.234818');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (76, 1020202, 'API_9d17762c81ef6a9adf49d370aba95088', '2026-05-21 16:39:06.234818');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (77, 1020202, 'API_3377b76bdc1c8fd8d118da3b6f831a83', '2026-05-21 16:39:06.234819');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (78, 1020202, 'API_84865849847f4d985e9b12e1535e8dc7', '2026-05-21 16:39:06.234819');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (79, 1020202, 'API_8b830e9c97700fc6160d038dd320fcfe', '2026-05-21 16:39:06.234820');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (80, 1020202, 'API_cd2877f1f54fba5af210c892188033dd', '2026-05-21 16:39:06.234820');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (81, 1020202, 'API_7fc3f64d90e73708d57aefc1f5fe5dd9', '2026-05-21 16:39:06.234821');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (82, 1020202, 'API_f0f19cd7e6da84bff6aef33e6edb037a', '2026-05-21 16:39:06.234821');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (83, 1020202, 'API_3367aeddef58d8bdbfb5e6a36a647304', '2026-05-21 16:39:06.234822');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (84, 1020202, 'API_cef52144a2f122cb439922941cb0b1a3', '2026-05-21 16:39:06.234822');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (85, 1020202, 'API_b02679dd0db69cc981d36e6b04ca8906', '2026-05-21 16:39:06.234823');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (86, 1020202, 'API_ced936e6dd265fc1bd7e7865e24707c2', '2026-05-21 16:39:06.234823');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (87, 1020202, 'API_6fd65ba0aa758ebf8b61a4a80f051b39', '2026-05-21 16:39:06.234823');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (88, 1020202, 'API_da8b5c560bff04ae5541885947980fcc', '2026-05-21 16:39:06.234824');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (89, 1020202, 'API_d7c2739a00234ccbdac8d42ef990a7e9', '2026-05-21 16:39:06.234824');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (90, 1020202, 'API_e9340087f1e22f56216c6b5ba94ef6b1', '2026-05-21 16:39:06.234825');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (91, 1020203, 'API_2dd3192bd3a04a87c4f0e124a427f3b2', '2026-05-21 16:39:06.234825');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (92, 1020203, 'API_34913e3b9073b944e15de7a79c2955ae', '2026-05-21 16:39:06.234825');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (93, 1020203, 'API_d07e27ce1e19ee70240bf4533961ae2a', '2026-05-21 16:39:06.234826');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (94, 1020203, 'API_54f394569ca66905e47a9f3a3d38d973', '2026-05-21 16:39:06.234827');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (95, 1020203, 'API_31d060ce58d85033d9d77d37932b532d', '2026-05-21 16:39:06.234827');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (96, 1020203, 'API_3e3bbb2fdbbfcb9bdac6fde7de173fbf', '2026-05-21 16:39:06.234828');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (97, 1020203, 'API_b02679dd0db69cc981d36e6b04ca8906', '2026-05-21 16:39:06.234828');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (98, 1020203, 'API_e9340087f1e22f56216c6b5ba94ef6b1', '2026-05-21 16:39:06.234828');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (99, 1020203, 'API_1e9af7b3e2db7a26e059edf443131a72', '2026-05-21 16:39:06.234829');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (100, 1020203, 'API_6ffd6d8c5065f56a1ea40924edd0bf40', '2026-05-21 16:39:06.234829');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (101, 1020203, 'API_98a4fed6a3597f23f7008e672ef762c3', '2026-05-21 16:39:06.234830');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (102, 1020301, 'API_4f9dd293743d274ef354a5901df7a8b6', '2026-05-21 16:39:06.234830');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (103, 1020301, 'API_73dbc7b3c09c872513b5da59b7d82912', '2026-05-21 16:39:06.234831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (104, 1020301, 'API_d1785360733ec91e8b4d192b525b1142', '2026-05-21 16:39:06.234831');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (105, 1020301, 'API_0bf0d984f4bf90bb89ef34241a62e676', '2026-05-21 16:39:06.234832');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (106, 1020302, 'API_1c39293ee023f4118996fc0858f9bd7e', '2026-05-21 16:39:06.234832');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (107, 1020302, 'API_8dbc3275c2559472434c591c86e43be1', '2026-05-21 16:39:06.234833');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (108, 1020302, 'API_1b0637db4a66f5560400673187a13ceb', '2026-05-21 16:39:06.234833');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (109, 1020302, 'API_97b04614181a99b889c67947a8d42e64', '2026-05-21 16:39:06.234834');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (110, 1020302, 'API_5aa05c41d6d540f92fc7330d5b24ceb7', '2026-05-21 16:39:06.234834');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (111, 1020302, 'API_c51e79676452ffb94e962889aabc0248', '2026-05-21 16:39:06.234835');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (112, 1020302, 'API_8906b537a36a1624579c339948da677a', '2026-05-21 16:39:06.234835');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (113, 1020206, 'API_6a8764296f61cb5564523a37dcf33e2a', '2026-05-21 16:39:06.234836');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (114, 1020206, 'API_070708150967f3302ad6d23b0492ae08', '2026-05-21 16:39:06.234836');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (115, 1020206, 'API_dae26fe712f0f78bfdbb427471893c56', '2026-05-21 16:39:06.234837');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (116, 1020206, 'API_bf30946088a1358ec414e656c507bac5', '2026-05-21 16:39:06.234838');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (117, 1020206, 'API_1308e2bcedf47b538d45b15a0b3b7c5c', '2026-05-21 16:39:06.234838');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (118, 1020206, 'API_893720e4b59c3e6d8565ef1f31029f2b', '2026-05-21 16:39:06.234839');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (119, 1020204, 'API_a860fbb226fa1e26288cbe4fc30bbed3', '2026-05-21 16:39:06.234839');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (120, 1020204, 'API_d5a160d25cd521a432e7721049971a4e', '2026-05-21 16:39:06.234840');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (121, 1020204, 'API_e3597d4df6d13890ed33681dcd0df0ed', '2026-05-21 16:39:06.234840');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (122, 1020204, 'API_ac84b567ea27fc7dbf153ae0a3dc8518', '2026-05-21 16:39:06.234841');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (123, 1020204, 'API_acb3018886f450ff00756dc4362cec10', '2026-05-21 16:39:06.234841');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (124, 1020204, 'API_2eeb058a76b2c5301474b0ce8dc6505f', '2026-05-21 16:39:06.234842');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (125, 1020204, 'API_75b7ad7e4472aeb91f5b327759b1452d', '2026-05-21 16:39:06.234842');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (126, 1020204, 'API_b2ee266363725089ce0cda4f81039a2b', '2026-05-21 16:39:06.234843');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (127, 1020204, 'API_6f3279b5f12069a6bdbddb30e5a72c2d', '2026-05-21 16:39:06.234843');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (128, 1020401, 'API_4f9dd293743d274ef354a5901df7a8b6', '2026-05-21 16:39:06.234844');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (129, 1020401, 'API_73dbc7b3c09c872513b5da59b7d82912', '2026-05-21 16:39:06.234845');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (130, 1020401, 'API_d1785360733ec91e8b4d192b525b1142', '2026-05-21 16:39:06.234845');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (131, 1020401, 'API_0bf0d984f4bf90bb89ef34241a62e676', '2026-05-21 16:39:06.234846');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (132, 1020207, 'API_4fedaf5e9092fb8cbc5d316c09345c5f', '2026-05-21 16:39:06.234846');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (133, 1020207, 'API_738a4618a7653b60f9873d4a20d6d144', '2026-05-21 16:39:06.234847');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (134, 1020207, 'API_3128636e329fd9c9b56b58ced0d7ac90', '2026-05-21 16:39:06.234847');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (135, 1020207, 'API_4ae84224647e944f3719c01d6a566d11', '2026-05-21 16:39:06.234848');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (136, 1020207, 'API_adb2605192ed858d09404653a4273aa5', '2026-05-21 16:39:06.234848');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (137, 1020207, 'API_6614a5fcf679eca05ec1c06a89aee5ce', '2026-05-21 16:39:06.234849');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (138, 1020207, 'API_8cb7c61d6793dc2676399aaf60457819', '2026-05-21 16:39:06.234849');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (139, 1020207, 'API_02b75a0a29fe263eab5488e5ec0b6c64', '2026-05-21 16:39:06.234850');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (140, 103, 'API_f07bae12fa83859fb4d8415d11fd9d78', '2026-05-21 16:39:06.234850');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (141, 103, 'API_34477a1afe30fe1b2b61fec1718da871', '2026-05-21 16:39:06.234850');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (142, 103, 'API_5680439ba5b354abe3fd9161b06edca1', '2026-05-21 16:39:06.234851');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (143, 103, 'API_5bb4634d40a762874dc37a9261a00f47', '2026-05-21 16:39:06.234851');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (144, 103, 'API_c1d868cf8d54a47a9f3582df9290eca3', '2026-05-21 16:39:06.234852');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (145, 103, 'API_191e638268dbcc75870ebd3f4074fff2', '2026-05-21 16:39:06.234852');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (146, 103, 'API_5a5f337e410d04f8e899254df7fe078a', '2026-05-21 16:39:06.234853');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (147, 10301, 'API_b62d63caa50d04444592aac2372f8676', '2026-05-21 16:39:06.234853');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (148, 10301, 'API_a59299d1ed12d868da37f5e4f1416893', '2026-05-21 16:39:06.234853');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (149, 10301, 'API_4242dad239e59cdb980373214740e564', '2026-05-21 16:39:06.234854');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (150, 10301, 'API_dd2c39bdc7111be3305c41b8fb4d855c', '2026-05-21 16:39:06.234854');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (151, 10301, 'API_4b11cf53e30821e72556e4453a2f9e3d', '2026-05-21 16:39:06.234855');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (152, 10301, 'API_5bb4634d40a762874dc37a9261a00f47', '2026-05-21 16:39:06.234855');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (153, 10301, 'API_812d13d8cbecd655c2952aeb803d2ba8', '2026-05-21 16:39:06.234856');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (154, 10301, 'API_b42ed27998fa17909a167b95c30ccc27', '2026-05-21 16:39:06.234856');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (155, 10301, 'API_474c37e1d3e2da08bbafdc10f3ca794f', '2026-05-21 16:39:06.234857');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (156, 10301, 'API_cda910461383d058451439348a8e8c56', '2026-05-21 16:39:06.234857');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (157, 10301, 'API_2048c603f25300a3fced38605110cf17', '2026-05-21 16:39:06.234858');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (158, 10301, 'API_2aa7d4e1542ec0e76e33c50396d353a3', '2026-05-21 16:39:06.234858');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (159, 10301, 'API_50697b60ed74e8260fd0ecfe5154a1fd', '2026-05-21 16:39:06.234859');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (160, 10301, 'API_8055470d9a76840b41f4c522e9f16e1f', '2026-05-21 16:39:06.234860');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (161, 10301, 'API_98c604bba772ed263867beed6e19012b', '2026-05-21 16:39:06.234860');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (162, 10301, 'API_53e2ca5ad28405f7a5a86c7928901d62', '2026-05-21 16:39:06.234861');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (163, 10301, 'API_bfd0e209300e611129f45d98536ad769', '2026-05-21 16:39:06.234861');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (164, 10301, 'API_88824169bcde5afa4416c6c754872fc8', '2026-05-21 16:39:06.234862');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (165, 10301, 'API_94ed624255239faf141aa2941b95f53f', '2026-05-21 16:39:06.234862');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (166, 10301, 'API_fe3613f9ae2573827ff9fc306e2c7a99', '2026-05-21 16:39:06.234863');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (167, 10301, 'API_ada36eb500dee4aad7fcd2ba47eb9d2e', '2026-05-21 16:39:06.234863');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (168, 10301, 'API_0be4f5d20f9caa18dbf4c641f73a087a', '2026-05-21 16:39:06.234864');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (169, 10301, 'API_3ff78e257f934799aca14f7824e8349d', '2026-05-21 16:39:06.234865');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (170, 10301, 'API_e51a0c7e2fac6b772452392233ac396a', '2026-05-21 16:39:06.234865');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (171, 10301, 'API_89d8094a3ed3ec5c821fb8b1c393e78e', '2026-05-21 16:39:06.234865');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (172, 10301, 'API_61d338b6f1fbcd4e47ce7e046f3a4338', '2026-05-21 16:39:06.234866');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (173, 10301, 'API_8b9c502049b565e27192e504a480d5c6', '2026-05-21 16:39:06.234867');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (174, 10301, 'API_85fa363a91346eaf7a2f7d1f609eb751', '2026-05-21 16:39:06.234867');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (175, 10301, 'API_da8de128464b381e9b9840a0381b3ac9', '2026-05-21 16:39:06.234868');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (176, 10301, 'API_fe873cf5723823c0e0b2c7b0f762a286', '2026-05-21 16:39:06.234868');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (177, 10301, 'API_c7b8efe058c1e9d654dccdd5fded9ae7', '2026-05-21 16:39:06.234869');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (178, 10301, 'API_c3dfb1b3923907911719322ed5297333', '2026-05-21 16:39:06.234869');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (179, 10301, 'API_fb780ee0208c47dec9b38cb404a3c2cd', '2026-05-21 16:39:06.234869');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (180, 10301, 'API_2ed36e68b843ad735d8a0128d1c220d0', '2026-05-21 16:39:06.234870');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (181, 10301, 'API_351e36adff00e77e5a34660e35f17f7f', '2026-05-21 16:39:06.234870');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (182, 10301, 'API_729bd55831c2859b0669bf14d8575eda', '2026-05-21 16:39:06.234871');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (183, 10301, 'API_ca13e57ff562db5661c6d23bd7a5fdff', '2026-05-21 16:39:06.234871');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (184, 10301, 'API_285af16f9f7b584a94e9ceadd3b2bfb2', '2026-05-21 16:39:06.234872');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (185, 10302, 'API_8d255ec86c75c1d5254d6dfaf2eaa47b', '2026-05-21 16:39:06.234872');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (186, 10302, 'API_095bea387ea46c9734587367055aba00', '2026-05-21 16:39:06.234873');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (187, 10302, 'API_192b0a61fd1e9e4308275ea23948d5f7', '2026-05-21 16:39:06.234873');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (188, 10302, 'API_23d8d0ad4ef0e400271ee2fa8b5a377b', '2026-05-21 16:39:06.234874');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (189, 10302, 'API_f99b874fb80bfcaffa51b696d00026b8', '2026-05-21 16:39:06.234874');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (190, 10302, 'API_0854f2408abd7ca3941f3b567b4e616a', '2026-05-21 16:39:06.234875');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (191, 10303, 'API_918ac5870d50427b52eb48166d121f61', '2026-05-21 16:39:06.234875');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (192, 10303, 'API_4fc1cf30afe17d1e0a79d8d3f950d457', '2026-05-21 16:39:06.234876');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (193, 10303, 'API_d8fc4f2b92384e768636c03649645cab', '2026-05-21 16:39:06.234877');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (194, 10303, 'API_32cb492887a3d23fdddcdd562260024e', '2026-05-21 16:39:06.234877');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (195, 10304, 'API_a71eeb1faaa0c84ea028e67cf3853f63', '2026-05-21 16:39:06.234877');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (196, 10304, 'API_bae628b512984a3f555dfa1efe56b675', '2026-05-21 16:39:06.234878');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (197, 10304, 'API_69094571b3dc7a2ca79831b9552eddaa', '2026-05-21 16:39:06.234878');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (198, 10304, 'API_5680439ba5b354abe3fd9161b06edca1', '2026-05-21 16:39:06.234879');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (199, 10304, 'API_a6357d11cfc1cf6cf7d6fba97a0840f6', '2026-05-21 16:39:06.234880');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (200, 10304, 'API_a302f18e68358fa8e5aec2f7d618c1f2', '2026-05-21 16:39:06.234880');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (201, 10304, 'API_1fd3a593fa8de6b4d5531c650f040d65', '2026-05-21 16:39:06.234881');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (202, 10304, 'API_4b11cf53e30821e72556e4453a2f9e3d', '2026-05-21 16:39:06.234881');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (203, 10304, 'API_4f9c585e23f21da62d57923c3ed84b7f', '2026-05-21 16:39:06.234881');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (204, 10304, 'API_9bbeaa8c04d264e806945911bb92ffb7', '2026-05-21 16:39:06.234882');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (205, 10304, 'API_7f5bcdde3d514595e0560533acaf6f6a', '2026-05-21 16:39:06.234882');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (206, 10304, 'API_2f406e5c0397500357dffbde591da3b2', '2026-05-21 16:39:06.234883');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (207, 10304, 'API_9ecace70b9b2159cc7d403b779eee44f', '2026-05-21 16:39:06.234883');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (208, 10304, 'API_816c9ff59ca4d54dfb6a8de2ad5f706e', '2026-05-21 16:39:06.234884');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (209, 10304, 'API_4d18c1f1d51de2bfeca4c118861b047d', '2026-05-21 16:39:06.234884');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (210, 10304, 'API_a062fbce4bf4db4d0959510894c13686', '2026-05-21 16:39:06.234885');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (211, 10304, 'API_9a48ae6d6ead3813ab423d24e9f9f281', '2026-05-21 16:39:06.234886');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (212, 10304, 'API_8abe3d97d240a5c7b79b68778be59ad8', '2026-05-21 16:39:06.234886');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (213, 10304, 'API_b1af4bf0b9150bbf520211d8419e3c08', '2026-05-21 16:39:06.234887');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (214, 10304, 'API_9ac6e6563488b5a55c0b830b0b84b379', '2026-05-21 16:39:06.234887');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (215, 10304, 'API_446c61e449ba3ba830af5e53484c260b', '2026-05-21 16:39:06.234888');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (216, 10304, 'API_38810a84d4458c12ee6b5d6e77d2386d', '2026-05-21 16:39:06.234888');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (217, 10305, 'API_3832f39edc32137e8a1b1def2c778eda', '2026-05-21 16:39:06.234889');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (218, 10305, 'API_4f331221d31ea49b9e9c22ceddce030d', '2026-05-21 16:39:06.234889');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (219, 10305, 'API_79a4eb946ab77dac3acd0c6905c1eb35', '2026-05-21 16:39:06.234889');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (220, 10305, 'API_d5f765bca51588cd132f92b4160c7221', '2026-05-21 16:39:06.234890');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (221, 10305, 'API_c8d108eb355ebf0e9487b95b1de48333', '2026-05-21 16:39:06.234891');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (222, 10401, 'API_cb3faaec0b4323d8b8c9fa842f9f6b98', '2026-05-21 16:39:06.234891');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (223, 10401, 'API_72d07fd8cdac3f2ffbe4bd96be7efd38', '2026-05-21 16:39:06.234891');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (224, 10401, 'API_bdf9c4dd43c53bf7b6591cf59bb5acc2', '2026-05-21 16:39:06.234892');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (225, 10401, 'API_83489cff2436a7e08c6856632504017a', '2026-05-21 16:39:06.234892');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (226, 10401, 'API_0a36ab7e10b0b753d70bfa74931fc904', '2026-05-21 16:39:06.234893');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (227, 10401, 'API_0b5a224e80b9cf122ab8f9dee117c982', '2026-05-21 16:39:06.234893');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (228, 10401, 'API_e751b0686b44b326847e8c9e6a94cb2f', '2026-05-21 16:39:06.234893');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (229, 10401, 'API_37a9a12a88289fa0c8ba98d3ed6e3cda', '2026-05-21 16:39:06.234894');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (230, 10401, 'API_46ef55536d9a215f4b63edb217999429', '2026-05-21 16:39:06.234894');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (231, 10401, 'API_e4c2e6ec001830c97707a7f4045e9c3d', '2026-05-21 16:39:06.234895');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (232, 10401, 'API_d7ce1fa30aedf65f6034f2a7490a397b', '2026-05-21 16:39:06.234895');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (233, 10401, 'API_9dbef6ba290a7396f8921d8c6d997d3f', '2026-05-21 16:39:06.234895');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (234, 10401, 'API_2d1a56ca12dc8b2e7f431c6340fa28b9', '2026-05-21 16:39:06.234896');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (235, 10401, 'API_14f1334f04178a506abdd39a7d719c07', '2026-05-21 16:39:06.234896');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (236, 10401, 'API_b48c45066e159dc545547ab0757f5c82', '2026-05-21 16:39:06.234897');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (237, 10401, 'API_7044af27043bbee1fdb83534216014a5', '2026-05-21 16:39:06.234897');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (238, 1040301, 'API_a3ddb2503a1d63eb376856e729e3768b', '2026-05-21 16:39:06.234898');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (239, 1040301, 'API_3ca8ad8bf0f09d8ba84a526c673e35ff', '2026-05-21 16:39:06.234898');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (240, 1040301, 'API_d17b278e5a4a3bc46d730d6410f8912a', '2026-05-21 16:39:06.234899');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (241, 1040301, 'API_efeee0dc0a391cdd8aebab82831d31fe', '2026-05-21 16:39:06.234899');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (242, 1040301, 'API_bf36a6e05da635578fd04ed3d927aa9d', '2026-05-21 16:39:06.234900');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (243, 1040301, 'API_9ae079f9a53d66f8fc15062f516b665a', '2026-05-21 16:39:06.234901');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (244, 1040301, 'API_bc8bda3e50687ab4a0c2296a0c7b6f38', '2026-05-21 16:39:06.234901');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (245, 1040301, 'API_3b3a96bb90e607b735a1199e5c23c103', '2026-05-21 16:39:06.234902');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (246, 1040301, 'API_5a5f337e410d04f8e899254df7fe078a', '2026-05-21 16:39:06.234902');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (247, 1040302, 'API_738538852005b6ec7ce753a6624afdf4', '2026-05-21 16:39:06.234903');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (248, 1040302, 'API_50a0a18574f2f712f4df6a667f1577ac', '2026-05-21 16:39:06.234903');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (249, 104030301, 'API_7e3eb0e223ba438cea3220078f7027bb', '2026-05-21 16:39:06.234904');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (250, 104030301, 'API_8cf2a271d86aa91acd282d3344f2a58a', '2026-05-21 16:39:06.234905');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (251, 104030301, 'API_2d26d3c01a09a6ebbd5dc5f0333830c1', '2026-05-21 16:39:06.234905');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (252, 104030302, 'API_c7843fc22f391cf84e039177953b8e75', '2026-05-21 16:39:06.234906');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (253, 104030302, 'API_b2123dee1295e94b8c36ac837d3415f3', '2026-05-21 16:39:06.234906');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (254, 104030302, 'API_bc2bed3c236e27ef1954db9968f4742a', '2026-05-21 16:39:06.234907');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (255, 1040304, 'API_f67aa7dbf88eee1f2b237b78193da918', '2026-05-21 16:39:06.234908');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (256, 1040304, 'API_971cb44b404d09edc5cdd63a86c339dd', '2026-05-21 16:39:06.234908');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (257, 1040304, 'API_e508c93e98de2823e376383859a1b8ed', '2026-05-21 16:39:06.234909');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (258, 1040304, 'API_83c1e78cf8629d1f6405720ef92f7344', '2026-05-21 16:39:06.234909');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (259, 11101, 'API_4b11cf53e30821e72556e4453a2f9e3d', '2026-05-21 16:39:06.234910');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (260, 11101, 'API_2bf00c2a41419e6b52b341e16106d136', '2026-05-21 16:39:06.234910');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (261, 11101, 'API_368fe2108e05ced9e804458174ef28ad', '2026-05-21 16:39:06.234911');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (262, 11101, 'API_2dc17f2ba2aaed229d3ee216dcff941c', '2026-05-21 16:39:06.234912');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (263, 11101, 'API_ff43dab82df580f4a3e66876cb050689', '2026-05-21 16:39:06.234912');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (264, 1110201, 'API_a760f128c0c1f37b2aacfff22613aa2c', '2026-05-21 16:39:06.234912');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (265, 1110202, 'API_ccb883721a9cd95fcaf8b3140a5d5bc1', '2026-05-21 16:39:06.234913');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (266, 1110202, 'API_a580373dea37b411dda631102c8fe0db', '2026-05-21 16:39:06.234913');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (267, 1110202, 'API_bd56904a3fb45ba35c56a0c625faf922', '2026-05-21 16:39:06.234914');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (268, 1110202, 'API_6d0b2878008ea027725d55b4d04a9bfc', '2026-05-21 16:39:06.234915');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (269, 1110202, 'API_10984d24dc01af7c718ee85746e2b068', '2026-05-21 16:39:06.234915');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (270, 1110202, 'API_697bd31e1074048419c07214ccc93248', '2026-05-21 16:39:06.234916');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (271, 11103, 'API_2ee7a8d598295b59e2ecf28c3c872d98', '2026-05-21 16:39:06.234916');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (272, 11103, 'API_95ed00c298669f66a2d31a6f1e3b700c', '2026-05-21 16:39:06.234917');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (273, 11103, 'API_7197ea048e84533e0fe6b3c01ff0117f', '2026-05-21 16:39:06.234918');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (274, 11103, 'API_e5a031118b0cd6cc7ef93a6a06967f1b', '2026-05-21 16:39:06.234918');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (275, 11103, 'API_67fb7677c230812c435c5f63deb43fc3', '2026-05-21 16:39:06.234919');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (276, 11103, 'API_563dbaab3b05c4264ec08cceec842f3b', '2026-05-21 16:39:06.234919');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (277, 11103, 'API_8cb7c61d6793dc2676399aaf60457819', '2026-05-21 16:39:06.234920');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (278, 11103, 'API_4d6040952e3b5ef3377c53597460d5db', '2026-05-21 16:39:06.234920');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (279, 11103, 'API_6b1cefc460ac6f4571812cdeb98bd497', '2026-05-21 16:39:06.234921');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (280, 11103, 'API_b628cb8aaf471bac654faaa292f59356', '2026-05-21 16:39:06.234921');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (281, 11103, 'API_b83018a826eb93e4f8c35d3a3fe935d3', '2026-05-21 16:39:06.234922');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (282, 11103, 'API_bbffff8a035589b873b7fce227e1bf4c', '2026-05-21 16:39:06.234922');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (283, 11103, 'API_4ce66098c36fe8cfe2f406116e00d1e4', '2026-05-21 16:39:06.234923');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (284, 11103, 'API_bfb12c098be075911f008091d33d128f', '2026-05-21 16:39:06.234923');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (285, 11103, 'API_8ec34a59429d03de10411209e102d86f', '2026-05-21 16:39:06.234924');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (286, 11103, 'API_bcf7882c7b8b6bbdc769bc99bcd8147e', '2026-05-21 16:39:06.234925');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (287, 11103, 'API_0b8952d70725a1a26376bdde84e850fd', '2026-05-21 16:39:06.234925');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (288, 11103, 'API_c60f53eef5bb8773eb8e5dac422d2ffc', '2026-05-21 16:39:06.234926');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (289, 11103, 'API_6d80eeb2eae86ef9f302c808e90622ae', '2026-05-21 16:39:06.234926');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (290, 11103, 'API_22043ac9de9c7e00093c9aa450c6dd85', '2026-05-21 16:39:06.234927');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (291, 11103, 'API_548dabbf04a30d0384669ca6bbbaba77', '2026-05-21 16:39:06.234928');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (292, 11103, 'API_01bc577b25ed05b5f1ced65f93855ed8', '2026-05-21 16:39:06.234928');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (293, 11103, 'API_6561579432706fc4f4511bf193f2d7f9', '2026-05-21 16:39:06.234929');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (294, 11103, 'API_02b75a0a29fe263eab5488e5ec0b6c64', '2026-05-21 16:39:06.234930');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (295, 11103, 'API_008644f552e88896ac241f1f0d5d972a', '2026-05-21 16:39:06.234930');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (296, 11103, 'API_298b1b007c1686c299b8fd1815e154b3', '2026-05-21 16:39:06.234931');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (297, 11103, 'API_89d9d08011fcc7dba56e658bf9f0ed8f', '2026-05-21 16:39:06.234931');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (298, 1050102, 'API_7ef9090c6b286297039d9ab2a2ed397d', '2026-05-21 16:39:06.234932');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (299, 1050102, 'API_dbe91714a94d7afa490168289263b131', '2026-05-21 16:39:06.234932');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (300, 1050102, 'API_2c448896209d57b3ce8eb133aa9bdd77', '2026-05-21 16:39:06.234933');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (301, 1050102, 'API_2aa509d64fa8e919c9c7b692cfcde0c1', '2026-05-21 16:39:06.234933');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (302, 1050102, 'API_e8244629bc843d10545ddc5c229f620c', '2026-05-21 16:39:06.234934');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (303, 1050102, 'API_8cccdd4a16212e145b9394b6d9433d1f', '2026-05-21 16:39:06.234934');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (304, 1050102, 'API_a3cc4bfef855eb01d404895c8703fbf9', '2026-05-21 16:39:06.234935');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (305, 1050102, 'API_98308cfe09044700a3e135bb0fa72a36', '2026-05-21 16:39:06.234935');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (306, 1050102, 'API_7c055183e7ec9418293e3398d7dcd4cb', '2026-05-21 16:39:06.234936');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (307, 1050102, 'API_249cc0ae6642612562cf30ef8522796c', '2026-05-21 16:39:06.234936');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (308, 1050102, 'API_5c246262e7909219fe0faf4c0ecdb9f2', '2026-05-21 16:39:06.234937');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (309, 1050102, 'API_f541dce581e532bc0dd714c60dd7e650', '2026-05-21 16:39:06.234937');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (310, 1050202, 'API_76239191938f76c6f610c4b84c8f39ee', '2026-05-21 16:39:06.234938');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (311, 1050202, 'API_e97afb0ec0e789101df0852fd4b56d4d', '2026-05-21 16:39:06.234938');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (312, 1050202, 'API_3e0f60765ef73348b188b80793e0f15b', '2026-05-21 16:39:06.234939');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (313, 1050202, 'API_d50e2a0372d025896e7865fc79409eb5', '2026-05-21 16:39:06.234939');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (314, 1050202, 'API_86ced65a06417dcc87bf086659df63f4', '2026-05-21 16:39:06.234940');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (315, 1050202, 'API_627beb13bf464460b5eef543375a40ee', '2026-05-21 16:39:06.234941');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (316, 1050202, 'API_19101f877e82c306686844bb8ec7a55e', '2026-05-21 16:39:06.234941');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (317, 1050202, 'API_627beb13bf464460b5eef543375a40ee', '2026-05-21 16:39:06.234942');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (318, 1050202, 'API_eb6c0e2d5845c28b0b8a6c988d015de0', '2026-05-21 16:39:06.234942');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (319, 1050202, 'API_745e512163d87c622077022de094a0b4', '2026-05-21 16:39:06.234943');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (320, 1050201, 'API_e29436099fd8009c316c0b5e2b710f78', '2026-05-21 16:39:06.234944');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (321, 1050201, 'API_5bbd252ea6e64873a270d73a15db8057', '2026-05-21 16:39:06.234944');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (322, 1050201, 'API_71a2848c8bd53836def5e80bd3a5f9c0', '2026-05-21 16:39:06.234945');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (323, 1050201, 'API_0da123c5045de9ea1e2c11afec01c5d2', '2026-05-21 16:39:06.234946');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (324, 1050201, 'API_0368acb8b020d2b9b5e8c54a371e2f24', '2026-05-21 16:39:06.234946');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (325, 1050201, 'API_3bd78b83b676adb4950d83b848067ef8', '2026-05-21 16:39:06.234947');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (326, 1050201, 'API_392307c53b2e7f956dedfb5eded4fbd8', '2026-05-21 16:39:06.234948');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (327, 1050203, 'API_8d255ec86c75c1d5254d6dfaf2eaa47b', '2026-05-21 16:39:06.234948');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (328, 1050203, 'API_095bea387ea46c9734587367055aba00', '2026-05-21 16:39:06.234949');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (329, 1050203, 'API_192b0a61fd1e9e4308275ea23948d5f7', '2026-05-21 16:39:06.234949');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (330, 1050203, 'API_23d8d0ad4ef0e400271ee2fa8b5a377b', '2026-05-21 16:39:06.234950');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (331, 1050203, 'API_f99b874fb80bfcaffa51b696d00026b8', '2026-05-21 16:39:06.234950');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (332, 1050203, 'API_b2569880cc01a52a10c03688e12f9515', '2026-05-21 16:39:06.234951');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (333, 1050301, 'API_259fd67fedd75c4ac3de48661224dcb0', '2026-05-21 16:39:06.234951');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (334, 1050301, 'API_0be31e64987c5ddea1d85c48303b54fe', '2026-05-21 16:39:06.234951');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (335, 1050301, 'API_26d9f14e3aefad8db55005b55e54ed24', '2026-05-21 16:39:06.234952');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (336, 1050302, 'API_c1fb2330975052962a44677a0185a57c', '2026-05-21 16:39:06.234953');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (337, 1050302, 'API_1084bcd01b014b9ac821742890911220', '2026-05-21 16:39:06.234953');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (338, 1050302, 'API_32eafe524ab95c38f670afd13eba3b24', '2026-05-21 16:39:06.234954');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (339, 1050303, 'API_2cf73ae718d7791d79f213698f327bfe', '2026-05-21 16:39:06.234954');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (340, 1050303, 'API_4325d75f5bd554b65ac4448add53b21a', '2026-05-21 16:39:06.234955');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (341, 1050303, 'API_d17b278e5a4a3bc46d730d6410f8912a', '2026-05-21 16:39:06.234955');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (342, 1060101, 'API_9e12896dea8bac01c53eb8543463cb89', '2026-05-21 16:39:06.234956');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (343, 1060101, 'API_6e027846ae16a6400c8d80b9a8867894', '2026-05-21 16:39:06.234956');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (344, 1060101, 'API_04235a6150fc151678adf734a097873d', '2026-05-21 16:39:06.234957');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (345, 1060101, 'API_c8fee93f58f123e3acf501a33e7dc8e8', '2026-05-21 16:39:06.234957');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (346, 1060101, 'API_2a8c8a2eda7386cf6189f35c83248b3e', '2026-05-21 16:39:06.234958');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (347, 1060101, 'API_b2e8fe16d1c60c9ddee4bb3e5691f578', '2026-05-21 16:39:06.234958');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (348, 1060101, 'API_b502be9d04429c2fc4556baeaa4dc7a6', '2026-05-21 16:39:06.234959');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (349, 1060101, 'API_45bef6d07116bcfec6a514c482c62ed2', '2026-05-21 16:39:06.234959');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (350, 1060101, 'API_5681d79b1cadf7623872c13fd6d35742', '2026-05-21 16:39:06.234960');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (351, 1060101, 'API_d492255a5d4df0296359b131388cfd59', '2026-05-21 16:39:06.234960');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (352, 1060102, 'API_615a2d10944d6f1438891a1cadd5fe53', '2026-05-21 16:39:06.234961');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (353, 1060102, 'API_0be31e64987c5ddea1d85c48303b54fe', '2026-05-21 16:39:06.234961');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (354, 1060102, 'API_ff6f5f63942bf2e1e06e3ac8907d3e29', '2026-05-21 16:39:06.234962');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (355, 1060102, 'API_a5134466310983ea6abfbc47997220ab', '2026-05-21 16:39:06.234962');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (356, 1060103, 'API_2bac5e660fc4f27b14acdfe0920d9e99', '2026-05-21 16:39:06.234963');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (357, 1060103, 'API_55a6039f910a9c6aec22f6cee723e906', '2026-05-21 16:39:06.234964');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (358, 1060103, 'API_ed58816c4157707f88e04b7d4b4358ba', '2026-05-21 16:39:06.234964');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (359, 1060103, 'API_4fd7c114b65be511352f9c7ab8bacdaf', '2026-05-21 16:39:06.234965');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (360, 1060103, 'API_1878b172f40597a71034d21d4c43a540', '2026-05-21 16:39:06.234966');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (361, 10602, 'API_ec1483c23d0b116dba410b5776c66695', '2026-05-21 16:39:06.234966');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (362, 10602, 'API_a45d8a45467ca6cc0332e9d86f1aeb05', '2026-05-21 16:39:06.234967');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (363, 10602, 'API_b24bf37d83c1a77d2e1d34683129e3f6', '2026-05-21 16:39:06.234968');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (364, 10602, 'API_0b104bb68c2c7b430721cd695be58c39', '2026-05-21 16:39:06.234968');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (365, 10602, 'API_7538060beedc68f15fe4656d8f99afb2', '2026-05-21 16:39:06.234969');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (366, 10602, 'API_79ccef9fcfe1184e5a93e99f457b91d1', '2026-05-21 16:39:06.234969');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (367, 10602, 'API_80c59d64700eb1291ec6df850d9adcd0', '2026-05-21 16:39:06.234970');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (368, 108, 'API_74c2404d0123cf9f3cb13f63fb43925d', '2026-05-21 16:39:06.234971');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (369, 108, 'API_8f1cb2c46fe31242d6cf9a62c641e61e', '2026-05-21 16:39:06.234971');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (370, 108, 'API_3d8e2e5702fb87fcb032f933dc841a51', '2026-05-21 16:39:06.234972');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (371, 108, 'API_df6c0fb022483d37f65828a78c6aad36', '2026-05-21 16:39:06.234972');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (372, 109, 'API_8bbb6bc57d4b7022af9ace2a833a11c5', '2026-05-21 16:39:06.234973');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (373, 109, 'API_dd9aee42fad9cc6b3c5e787b6cc70755', '2026-05-21 16:39:06.234973');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (374, 109, 'API_9435f223ddcf6f16ae54509528e63701', '2026-05-21 16:39:06.234974');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (375, 109, 'API_b08816d1b60271ad69df659a3a703a07', '2026-05-21 16:39:06.234974');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (376, 109, 'API_420768ed52355d15e29bbacca1ef670e', '2026-05-21 16:39:06.234975');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (377, 109, 'API_0afcd8544b65e59eba14f68c7251022c', '2026-05-21 16:39:06.234975');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (378, 109, 'API_78eaea2cc157ab24cfe580859efe9471', '2026-05-21 16:39:06.234976');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (379, 109, 'API_7ab9403b4ae2eae8a5dc76f744d6c3bb', '2026-05-21 16:39:06.234977');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (380, 109, 'API_a860fbb226fa1e26288cbe4fc30bbed3', '2026-05-21 16:39:06.234977');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (381, 109, 'API_f9be4cf71090a5952c6d8561a6f94223', '2026-05-21 16:39:06.234978');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (382, 109, 'API_42535d9f84a2765013684c9b56cbe293', '2026-05-21 16:39:06.234978');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (383, 109, 'API_5761fb61084295047675d6d0c3ab2f3e', '2026-05-21 16:39:06.234979');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (384, 109, 'API_be1ea74854cfd255a694ac802d99bec6', '2026-05-21 16:39:06.234979');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (385, 110, 'API_69960152a2d6e404582f537cfc94bbc7', '2026-05-21 16:39:06.234980');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (386, 110, 'API_54fe263adb3481f967f61e0644ec398f', '2026-05-21 16:39:06.234980');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (387, 110, 'API_c2174a3aaa21fef6d42d549bc3c356ac', '2026-05-21 16:39:06.234981');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (388, 110, 'API_be4bc66d6c0c3adedbef987957fa96fa', '2026-05-21 16:39:06.234981');
|
||||
INSERT INTO uav_lifecycle.regulator_resource_api_mapping (id, resource_id, api_code, create_at) VALUES (389, 110, 'API_0394ba0aad7eec6bb9247ef4ec65f577', '2026-05-21 16:39:06.234982');
|
||||
|
||||
|
||||
24
71-202601-XA监管平台/2.3.4-b版本/image.txt
Normal file
24
71-202601-XA监管平台/2.3.4-b版本/image.txt
Normal file
@@ -0,0 +1,24 @@
|
||||
cmii-uas-gateway=2.3.3-b=2026-05-19=252.tar.gz
|
||||
|
||||
cmii-uas-lifecycle=2.3.3-b=2026-05-19=571.tar.gz
|
||||
|
||||
cmii-uas-perception-live=2.3.3-b=2026-05-19=701.tar.gz
|
||||
|
||||
cmii-uas-datahub=2.3.3-b=2026-05-19=210.tar.gz
|
||||
|
||||
cmii-uas-parser-worker=2.3.3-b=2026-05-21=144.tar.gz
|
||||
|
||||
cmii-uas-foundation=2.3.4-0521-01=2026-05-21=165.tar.gz
|
||||
|
||||
cmii-uav-material-warehouse=2.3.3-b=2026-05-20=662.tar.gz
|
||||
|
||||
cmii-uas-airspace=2.3.4-b=2026-05-21=467.tar.gz
|
||||
|
||||
cmii-uas-la-defense=2.4.0-dev-0520-01=2026-05-20=454.tar.gz
|
||||
|
||||
cmii-uas-fusion=2.4.0-dev-0520-02=2026-05-21=863.tar.gz
|
||||
cmii-uav-platform-uasms=2.3.4-b-XA=2026-05-21=514.tar.gz
|
||||
cmii-uav-platform-uas=2.3.4-b-XA=2026-05-21=143.tar.gz
|
||||
|
||||
cmii-uav-platform-uasms=2.3.4-b-XA=2026-05-22=170.tar.gz
|
||||
cmii-uav-platform-uas=2.3.4-b-XA=2026-05-22=622.tar.gz
|
||||
27
71-202601-XA监管平台/2.3.4-b版本/动态密钥.txt
Normal file
27
71-202601-XA监管平台/2.3.4-b版本/动态密钥.txt
Normal file
@@ -0,0 +1,27 @@
|
||||
1、更新backend的nacose配置
|
||||
1)最后顶格添加如下配置
|
||||
sec:
|
||||
cipher:
|
||||
enabled: true
|
||||
asym-type: RSA
|
||||
asym-padding: RSA/ECB/OAEPWithSHA-256AndMGF1Padding
|
||||
url-encode: false
|
||||
sym-padding: AES/GCM/NoPadding
|
||||
length: 2048
|
||||
interval: 60000
|
||||
timeout: 5000
|
||||
ignore-paths:
|
||||
2)在mybatis-plus:里面对齐“log-impl: ”添加
|
||||
interceptors: com.cmii.chinamobile.uas.lifecycle.interceptor.DBLogInterceptor
|
||||
|
||||
3、更新uas-gateway
|
||||
在以下配置里面
|
||||
security:
|
||||
oauth2:
|
||||
regulator:
|
||||
permit-all:
|
||||
添加
|
||||
- /lifecycle/regulator/auth/getPubKey
|
||||
|
||||
|
||||
|
||||
27
71-202601-XA监管平台/260629-证书升级/xadcity.com.key
Normal file
27
71-202601-XA监管平台/260629-证书升级/xadcity.com.key
Normal file
@@ -0,0 +1,27 @@
|
||||
-----BEGIN RSA PRIVATE KEY-----
|
||||
MIIEowIBAAKCAQEAn1p9/MIsctdpiWLfyJICAfmluaBFL31UxJPyrEVs6pnAcmDj
|
||||
4Mcc8uk4MEYqKjTlEgNb7Qpr9u8xb9wt8NGwISkG+tTkpB/jsdhUNDdmI8TNTc+B
|
||||
46X6c24NOWS3E5D05CrK70jmIVKUrxG6z+8gyO7lAteOdeJgOIS5dsV3FGJjgtCw
|
||||
3B7M/GttuRCrMPt4rU6CBHHfmljwccQa5Jx3m+m/rrZ42FbkhZD9oUHWZ5ieGhh2
|
||||
98w1JPdAIaHR1FAWbfcqvzGaBVbaRWTBRf+0peAoySRNSjBJfA1lOP+h2hMOtaWt
|
||||
fMv3hIAYwqIN6BvCkeWJH6D3sLyTQx2GNsrcmQIDAQABAoIBAECSLpMJK3Gtj/o3
|
||||
sm5Xm7CpNFovc1l2865kNOVRjHzTqIOwdyZSCIz1q+sDw3ouzNOrwMggfPcmnWWy
|
||||
VntKvI/zS/y/35YRxfX+rsAp4p2D1Z0+BGf2jbHQWlNzWCv5hQIfxPOJGpdOGymF
|
||||
ialQQHyrMOkh53wlKtA8F9rk0QfU4r/rsehXMYhqloJY5WUBzb7Q3syweRa8xTri
|
||||
0aWYQp2TGNovCbYhci0bGCxVDpwt265PyZVikKJW6vqYa/hAYE90HeHSLjdIXnYW
|
||||
7vHIOd9bsoAQRtxvIi6wveyAvZoywb11e+MwY9ByVBJQIarY3AxbbtUzL/dPj0Ao
|
||||
HBpW3jECgYEAzXPK+xQqB3gw2EW+1n9NH8c65g2HIm+UQUFKdJi5xR9PJMZxQaWU
|
||||
cHUDLndknHBpRetyf4GeB8ppYs13/h9ttgBT9kDxUicaEvxcrQjjsnzQ7MHJsh3U
|
||||
Fa/NHVYwj6LrUdvRl1xTxy2TFHPACW2gHr2UFYo6MThHBv50dPT1QecCgYEAxo81
|
||||
+Dg7ePqHoxd5tFLogf9sg1ki51v91KJranKBGYo816CC38V9FLg9PrkkL+O1JisR
|
||||
PdxmzWhc60+8GVbpAOqu/dW+QYe47MfNsHA/fKtqcxhBSFbpRKtoiBOPxhuycE6i
|
||||
Xpz6JU2mmeozYRwGbZostiuwYAfyEnW3Bg0YHX8CgYEAsaIW8qTJffHOEX+j82LX
|
||||
dM1VwEgb+YsNXKotzMerfqKGVB57F64ovF5/JLK3u4Z5jql2MoYH82ZvXayWvZHA
|
||||
0qZP8c7OlyAVrCqjmjvgWpcOMFWQpL6jeyinqGC31cifuwPaoAqEqOZfj0RQ2hX9
|
||||
Zfa1TTZY/+tPhd2FJQYR8ysCgYBxuI4BhztQs7RBjW1wANgXtFHS/JdICODdCtUY
|
||||
l1InbYwhN1YdkX9tAYRaSzFVmEYlAR+T3YqndHFbeERUAvnaQ49L5EJeR7x7KIg+
|
||||
2FsULRz/pFGne9eIM9/fp8x9e1l8hxzpsWB3Qvz7RC5/HMz1swqOn4EZzxMuzWqw
|
||||
tYktQwKBgGFRHR+TFsSyWMOI79UjTy1tn/2Ckzr4NDRd7Adj2LIMOUHquM0IkFtr
|
||||
1lmOiFLmX3y5m5BaRTM8xw0Ixdx7+kjPr1P0BF16LGcHtFs9xpyvvH6A1qJqU2ia
|
||||
fyp0Elr3kutCelsu7OJ2DsckuRHGU8Ij2uEyg3n5WMelPUQeLEK5
|
||||
-----END RSA PRIVATE KEY-----
|
||||
88
71-202601-XA监管平台/260629-证书升级/xadcity.com.pem
Normal file
88
71-202601-XA监管平台/260629-证书升级/xadcity.com.pem
Normal file
@@ -0,0 +1,88 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIGsTCCBZmgAwIBAgIQR4xmPtrKXfg/mC3rGo96zTANBgkqhkiG9w0BAQsFADBj
|
||||
MQswCQYDVQQGEwJDTjE2MDQGA1UECgwtQmVpamluZyBYaW5jaGFjaGEgQ3JlZGl0
|
||||
IE1hbmFnZW1lbnQgQ28uLCBMdGQuMRwwGgYDVQQDDBNYY2MgVHJ1c3QgT1YgU1NM
|
||||
IENBMB4XDTI1MDkyMjAzNDMyMFoXDTI2MDkyMjAzNDMxOVowgYgxCzAJBgNVBAYT
|
||||
AkNOMRIwEAYDVQQIDAnmsrPljJfnnIExEjAQBgNVBAcMCeWuueWfjuWOvzE5MDcG
|
||||
A1UECgww5Lit5Zu96ZuE5a6J6ZuG5Zui5pWw5a2X5Z+O5biC56eR5oqA5pyJ6ZmQ
|
||||
5YWs5Y+4MRYwFAYDVQQDDA0qLnhhZGNpdHkuY29tMIIBIjANBgkqhkiG9w0BAQEF
|
||||
AAOCAQ8AMIIBCgKCAQEAn1p9/MIsctdpiWLfyJICAfmluaBFL31UxJPyrEVs6pnA
|
||||
cmDj4Mcc8uk4MEYqKjTlEgNb7Qpr9u8xb9wt8NGwISkG+tTkpB/jsdhUNDdmI8TN
|
||||
Tc+B46X6c24NOWS3E5D05CrK70jmIVKUrxG6z+8gyO7lAteOdeJgOIS5dsV3FGJj
|
||||
gtCw3B7M/GttuRCrMPt4rU6CBHHfmljwccQa5Jx3m+m/rrZ42FbkhZD9oUHWZ5ie
|
||||
Ghh298w1JPdAIaHR1FAWbfcqvzGaBVbaRWTBRf+0peAoySRNSjBJfA1lOP+h2hMO
|
||||
taWtfMv3hIAYwqIN6BvCkeWJH6D3sLyTQx2GNsrcmQIDAQABo4IDOTCCAzUwDAYD
|
||||
VR0TAQH/BAIwADBDBgNVHR8EPDA6MDigNqA0hjJodHRwOi8veGluY2hhY2hhMm92
|
||||
LmNybC5jZXJ0dW0ucGwveGluY2hhY2hhMm92LmNybDB5BggrBgEFBQcBAQRtMGsw
|
||||
LwYIKwYBBQUHMAGGI2h0dHA6Ly94aW5jaGFjaGEyb3Yub2NzcC1jZXJ0dW0uY29t
|
||||
MDgGCCsGAQUFBzAChixodHRwOi8vcmVwb3NpdG9yeS5jZXJ0dW0ucGwveGluY2hh
|
||||
Y2hhMm92LmNlcjAfBgNVHSMEGDAWgBT6oMvCx12BtSCSByALtjtwOwkOVTAdBgNV
|
||||
HQ4EFgQU5/bWCg/7m0Lah2dkfRpR4Qk/LW0wTAYDVR0gBEUwQzAIBgZngQwBAgIw
|
||||
NwYMKoRoAYb2dwIFARYCMCcwJQYIKwYBBQUHAgEWGWh0dHBzOi8vd3d3LmNlcnR1
|
||||
bS5wbC9DUFMwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB
|
||||
/wQEAwIFoDAlBgNVHREEHjAcgg0qLnhhZGNpdHkuY29tggt4YWRjaXR5LmNvbTCC
|
||||
AX8GCisGAQQB1nkCBAIEggFvBIIBawFpAHcA1219ENGn9XfCx+lf1wC/+YLJM1pl
|
||||
4dCzAXMXwMjFaXcAAAGZb4TbtwAABAMASDBGAiEAx7OvurKLJzo+HQEzLGxH0wAf
|
||||
Lq670Sl+sqb/96NPxqMCIQDVI4lpZiw0XUhl6q8kyrk4QIny0mYbDSvlVLkgirO3
|
||||
9wB2AMIxfldFGaNF7n843rKQQevHwiFaIr9/1bWtdprZDlLNAAABmW+E29kAAAQD
|
||||
AEcwRQIgJgkS0/49+hASLMm4hhkiXnDmTKpAgv8wQhsBgCxvR3gCIQDrjce3vAU0
|
||||
Sphs19kYe6I1V1nY2dW3AHEv3P83FTuOAgB2AKyrMHBs6+yEMfQT0vSRXxEeQiRD
|
||||
sfKmjE88KzunHgLDAAABmW+E2+oAAAQDAEcwRQIgUQt7Frd+Wh+RUfOOAuuE45Z/
|
||||
hyRkYB6xqqq5YfH9foICIQCpkZWdYgjsoBBoz3f9KKjXNuQaPLH2inj8jxbU5GPo
|
||||
KjANBgkqhkiG9w0BAQsFAAOCAQEAMYiPyL1oAQzROX+vWD10nWFLROG1CGHTNyZc
|
||||
3hhRJJBF+IMZpNRS8CSwG4G6cYhuWvS+Y0gGBgPbKjoVkXBn1kvdocmmfuXDheVU
|
||||
csPDX/a3AdRKKtgDSneHwyTd314G8sNCWiDNTfWXDM9e0uR5NbPTQokuOFZ5FP/+
|
||||
gdKulXiuR5HvwJQ+FU/dJ4TS47GhcBK38aZIUG2n+UvZE28Dwc0oOH9Lz9Rlj0pH
|
||||
yTUAKdNvRse71zLph6Qt2l4ITR8VluCFoHGbHMT32bgX0kxqW97lMlAxkezmgm9Q
|
||||
GoF9uX685T+jZshf81Ye4E3tBCd9vpZeHj1QSqF/9LffaXPlNQ==
|
||||
-----END CERTIFICATE-----
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIEzzCCA7egAwIBAgIRAPJECC2rqQ2ljHLp8pqTQK4wDQYJKoZIhvcNAQELBQAw
|
||||
fjELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu
|
||||
QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEiMCAG
|
||||
A1UEAxMZQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQTAeFw0yMjA3MDEwNzQ4NDda
|
||||
Fw0yNzA2MzAwNzQ4NDdaMGMxCzAJBgNVBAYTAkNOMTYwNAYDVQQKDC1CZWlqaW5n
|
||||
IFhpbmNoYWNoYSBDcmVkaXQgTWFuYWdlbWVudCBDby4sIEx0ZC4xHDAaBgNVBAMM
|
||||
E1hjYyBUcnVzdCBPViBTU0wgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK
|
||||
AoIBAQCz2nxSPEsMeRBdunf+KZ8CrJIj9DUWGVu05WWyES+QkMHzVHCZt8cB2Blp
|
||||
qzHHqFsXSDHVzcMxDeXBbudmQwYbg5NpSwY9vJHPTl6vlAlK4UWN4+oPTgP9//RN
|
||||
N6KLmK3kjZ2Zc9F3kFKVaziSwVNjVvneacoUnz6blwLLBc5QelQ8oDT0eEv0QBAY
|
||||
I0T8pHDgcvWQqTBaRrOb80plDhYju464XbVhtOHvFCiBIkKnfUBnBfptWjGM8Kis
|
||||
sq4r8YX35B/pioj9g1YX34MLt+5L3vvWXEb2aMiwwB1Z3bSeeiU3N8aMuSb9E9jp
|
||||
zd0uhzRameU7jAIAr8uuunb7GUJ7AgMBAAGjggFhMIIBXTASBgNVHRMBAf8ECDAG
|
||||
AQH/AgEAMB0GA1UdDgQWBBT6oMvCx12BtSCSByALtjtwOwkOVTAfBgNVHSMEGDAW
|
||||
gBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0lBBYw
|
||||
FAYIKwYBBQUHAwEGCCsGAQUFBwMCMC8GA1UdHwQoMCYwJKAioCCGHmh0dHA6Ly9j
|
||||
cmwuY2VydHVtLnBsL2N0bmNhLmNybDBrBggrBgEFBQcBAQRfMF0wKAYIKwYBBQUH
|
||||
MAGGHGh0dHA6Ly9zdWJjYS5vY3NwLWNlcnR1bS5jb20wMQYIKwYBBQUHMAKGJWh0
|
||||
dHA6Ly9yZXBvc2l0b3J5LmNlcnR1bS5wbC9jdG5jYS5jZXIwOgYDVR0gBDMwMTAv
|
||||
BgRVHSAAMCcwJQYIKwYBBQUHAgEWGWh0dHBzOi8vd3d3LmNlcnR1bS5wbC9DUFMw
|
||||
DQYJKoZIhvcNAQELBQADggEBACWzdb59JyYc/WivKUcTEZ+H8WOTuv3AiR6rPljB
|
||||
QUEB/1kxIeBK+276WLJn0nFNFuT9QMUBo/iUvNvuRQqVjouuYB0Oea6zKQpeMWry
|
||||
oYtbheW+5NYAbdl9tYE4MRRK9zBLMRrQz35q+XfgMInozidhNHCvuulWk38OMM51
|
||||
O73z53+R1879nnoZZznoYnrnkISVDjlhe6OSMifvIJAwSYwH2z79Y6CTVgtqTDR9
|
||||
793Gr7UUmk5ydoxClxnku7voTX8iJUPcuAjElxFrhSQoxm6uXXOfItEqGvLkWAcq
|
||||
IC5mcyU9VpUg1YP+KkDMh+KQM7/k+2ka1em9hO+QHvJ08UQ=
|
||||
-----END CERTIFICATE-----
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM
|
||||
MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D
|
||||
ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU
|
||||
cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3
|
||||
WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg
|
||||
Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw
|
||||
IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B
|
||||
AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH
|
||||
UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM
|
||||
TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU
|
||||
BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM
|
||||
kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x
|
||||
AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV
|
||||
HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV
|
||||
HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y
|
||||
sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL
|
||||
I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8
|
||||
J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY
|
||||
VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI
|
||||
03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw=
|
||||
-----END CERTIFICATE-----
|
||||
25
71-202601-XA监管平台/反向代理/haikang-reverse-proxy.conf
Normal file
25
71-202601-XA监管平台/反向代理/haikang-reverse-proxy.conf
Normal file
@@ -0,0 +1,25 @@
|
||||
server {
|
||||
listen 2227;
|
||||
server_name localhost;
|
||||
|
||||
location / {
|
||||
proxy_pass https://open.hikvision.com;
|
||||
|
||||
proxy_set_header Host open.hikvision.com;
|
||||
proxy_ssl_name open.hikvision.com;
|
||||
proxy_ssl_server_name on;
|
||||
proxy_ssl_protocols TLSv1.2 TLSv1.3;
|
||||
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Connection "";
|
||||
|
||||
# 将远端重定向中的域名替换回本地地址
|
||||
proxy_redirect https://open.hikvision.com/ http://10.22.57.8:2227/;
|
||||
|
||||
proxy_connect_timeout 10s;
|
||||
proxy_read_timeout 30s;
|
||||
}
|
||||
}
|
||||
28
75-202603-重庆二级平台/4-nginx代理/gaode-reverse-proxy.conf
Normal file
28
75-202603-重庆二级平台/4-nginx代理/gaode-reverse-proxy.conf
Normal file
@@ -0,0 +1,28 @@
|
||||
server {
|
||||
listen 1998;
|
||||
server_name localhost;
|
||||
|
||||
location / {
|
||||
proxy_pass https://restapi.amap.com;
|
||||
|
||||
# 必须设置,否则高德服务器可能会拒绝请求
|
||||
proxy_set_header Host restapi.amap.com;
|
||||
|
||||
# 核心:确保 SSL 握手时发送正确的域名
|
||||
proxy_ssl_name restapi.amap.com;
|
||||
proxy_ssl_server_name on;
|
||||
proxy_ssl_protocols TLSv1.2 TLSv1.3;
|
||||
|
||||
# 常规转发头
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
|
||||
# 优化连接
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Connection "";
|
||||
|
||||
# 增加超时控制,防止 API 响应慢导致连接堆积
|
||||
proxy_connect_timeout 10s;
|
||||
proxy_read_timeout 30s;
|
||||
}
|
||||
}
|
||||
1
81-202604-深圳龙华监管/TCP暴露面.txt
Normal file
1
81-202604-深圳龙华监管/TCP暴露面.txt
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
25
81-202604-深圳龙华监管/k8s-app/cmii-nginx-cm.yaml
Normal file
25
81-202604-深圳龙华监管/k8s-app/cmii-nginx-cm.yaml
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
kind: ConfigMap
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: nginx-cm
|
||||
namespace: sz-lh-uas-260408
|
||||
labels:
|
||||
cmii.type: frontend
|
||||
data:
|
||||
nginx.conf: |
|
||||
server {
|
||||
listen 9528;
|
||||
server_name localhost;
|
||||
gzip on;
|
||||
|
||||
location / {
|
||||
root /home/cmii-platform/dist;
|
||||
index index.html index.htm;
|
||||
}
|
||||
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
location = /50x.html {
|
||||
root html;
|
||||
}
|
||||
}
|
||||
125
81-202604-深圳龙华监管/k8s-app/cmii-uav-platform-uas.yaml
Normal file
125
81-202604-深圳龙华监管/k8s-app/cmii-uav-platform-uas.yaml
Normal file
@@ -0,0 +1,125 @@
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/app-version: uas-2.3
|
||||
cmii.app: cmii-uav-platform-uas
|
||||
cmii.type: frontend
|
||||
octopus.control: frontend-app-wdd
|
||||
name: cmii-uav-platform-uas
|
||||
namespace: sz-lh-uas-260408
|
||||
spec:
|
||||
progressDeadlineSeconds: 600
|
||||
replicas: 1
|
||||
revisionHistoryLimit: 10
|
||||
selector:
|
||||
matchLabels:
|
||||
cmii.app: cmii-uav-platform-uas
|
||||
cmii.type: frontend
|
||||
strategy:
|
||||
rollingUpdate:
|
||||
maxSurge: 25%
|
||||
maxUnavailable: 1
|
||||
type: RollingUpdate
|
||||
template:
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
labels:
|
||||
cmii.app: cmii-uav-platform-uas
|
||||
cmii.type: frontend
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: K8S_NAMESPACE
|
||||
value: sz-lh-uas-260408
|
||||
- name: APPLICATION_NAME
|
||||
value: cmii-uav-platform-uas
|
||||
image: 镜像仓库/cmii/cmii-uav-platform-uas:2.3.4-xa-20260427
|
||||
imagePullPolicy: Always
|
||||
name: cmii-uav-platform-uas
|
||||
ports:
|
||||
- containerPort: 9528
|
||||
name: platform-9528
|
||||
protocol: TCP
|
||||
resources:
|
||||
limits:
|
||||
cpu: "1"
|
||||
memory: 1Gi
|
||||
requests:
|
||||
cpu: 50m
|
||||
memory: 50Mi
|
||||
terminationMessagePath: /dev/termination-log
|
||||
terminationMessagePolicy: File
|
||||
volumeMounts:
|
||||
- mountPath: /etc/nginx/conf.d/nginx.conf
|
||||
name: nginx-conf
|
||||
subPath: nginx.conf
|
||||
- mountPath: /home/cmii-platform/dist/ingress-config.js
|
||||
name: tenant-prefix
|
||||
subPath: ingress-config.js
|
||||
dnsPolicy: ClusterFirst
|
||||
imagePullSecrets:
|
||||
- name: harborsecret
|
||||
restartPolicy: Always
|
||||
schedulerName: default-scheduler
|
||||
securityContext: {}
|
||||
terminationGracePeriodSeconds: 30
|
||||
volumes:
|
||||
- configMap:
|
||||
defaultMode: 420
|
||||
items:
|
||||
- key: nginx.conf
|
||||
path: nginx.conf
|
||||
name: nginx-cm
|
||||
name: nginx-conf
|
||||
- configMap:
|
||||
defaultMode: 420
|
||||
items:
|
||||
- key: ingress-config.js
|
||||
path: ingress-config.js
|
||||
name: tenant-prefix-uas
|
||||
name: tenant-prefix
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/version: uas-2.3
|
||||
cmii.app: cmii-uav-platform-uas
|
||||
cmii.type: frontend
|
||||
octopus.control: frontend-app-wdd
|
||||
name: cmii-uav-platform-uas
|
||||
namespace: sz-lh-uas-260408
|
||||
spec:
|
||||
ports:
|
||||
- name: web-svc-port
|
||||
port: 9528
|
||||
protocol: TCP
|
||||
targetPort: 9528
|
||||
selector:
|
||||
cmii.app: cmii-uav-platform-uas
|
||||
cmii.type: frontend
|
||||
sessionAffinity: None
|
||||
type: ClusterIP
|
||||
---
|
||||
kind: ConfigMap
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: tenant-prefix-uas
|
||||
namespace: sz-lh-uas-260408
|
||||
data:
|
||||
ingress-config.js: |-
|
||||
var __GlobalIngressConfig = {
|
||||
TenantEnvironment: "",
|
||||
CloudHOST: "dkzlw.szlhdata.com",
|
||||
ApplicationShortName: "uas",
|
||||
TdtToken: '0b0f172571340ced0900bf2fd08cdbfd',
|
||||
AppClientId: "empty",
|
||||
brandConfig: {
|
||||
title: '深圳龙华低空应用公共服务平台'
|
||||
},
|
||||
MapConfigs:{
|
||||
center: [115.941198, 39.049656]
|
||||
}
|
||||
}
|
||||
127
81-202604-深圳龙华监管/k8s-app/cmii-uav-platform-uasms.yaml
Normal file
127
81-202604-深圳龙华监管/k8s-app/cmii-uav-platform-uasms.yaml
Normal file
@@ -0,0 +1,127 @@
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/app-version: uas-2.3
|
||||
cmii.app: cmii-uav-platform-uasms
|
||||
cmii.type: frontend
|
||||
octopus.control: frontend-app-wdd
|
||||
name: cmii-uav-platform-uasms
|
||||
namespace: sz-lh-uas-260408
|
||||
spec:
|
||||
progressDeadlineSeconds: 600
|
||||
replicas: 1
|
||||
revisionHistoryLimit: 10
|
||||
selector:
|
||||
matchLabels:
|
||||
cmii.app: cmii-uav-platform-uasms
|
||||
cmii.type: frontend
|
||||
strategy:
|
||||
rollingUpdate:
|
||||
maxSurge: 25%
|
||||
maxUnavailable: 1
|
||||
type: RollingUpdate
|
||||
template:
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
labels:
|
||||
cmii.app: cmii-uav-platform-uasms
|
||||
cmii.type: frontend
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: K8S_NAMESPACE
|
||||
value: sz-lh-uas-260408
|
||||
- name: APPLICATION_NAME
|
||||
value: cmii-uav-platform-uasms
|
||||
image: 镜像仓库/cmii/cmii-uav-platform-uasms:2.3.4-xa-2026050801
|
||||
imagePullPolicy: Always
|
||||
name: cmii-uav-platform-uasms
|
||||
ports:
|
||||
- containerPort: 9528
|
||||
name: platform-9528
|
||||
protocol: TCP
|
||||
resources:
|
||||
limits:
|
||||
cpu: "1"
|
||||
memory: 1Gi
|
||||
requests:
|
||||
cpu: 50m
|
||||
memory: 50Mi
|
||||
terminationMessagePath: /dev/termination-log
|
||||
terminationMessagePolicy: File
|
||||
volumeMounts:
|
||||
- mountPath: /etc/nginx/conf.d/nginx.conf
|
||||
name: nginx-conf
|
||||
subPath: nginx.conf
|
||||
- mountPath: /home/cmii-platform/dist/ingress-config.js
|
||||
name: tenant-prefix
|
||||
subPath: ingress-config.js
|
||||
dnsPolicy: ClusterFirst
|
||||
imagePullSecrets:
|
||||
- name: harborsecret
|
||||
restartPolicy: Always
|
||||
schedulerName: default-scheduler
|
||||
securityContext: {}
|
||||
terminationGracePeriodSeconds: 30
|
||||
volumes:
|
||||
- configMap:
|
||||
defaultMode: 420
|
||||
items:
|
||||
- key: nginx.conf
|
||||
path: nginx.conf
|
||||
name: nginx-cm
|
||||
name: nginx-conf
|
||||
- configMap:
|
||||
defaultMode: 420
|
||||
items:
|
||||
- key: ingress-config.js
|
||||
path: ingress-config.js
|
||||
name: tenant-prefix-uasms
|
||||
name: tenant-prefix
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/version: uas-2.3
|
||||
cmii.app: cmii-uav-platform-uasms
|
||||
cmii.type: frontend
|
||||
octopus.control: frontend-app-wdd
|
||||
name: cmii-uav-platform-uasms
|
||||
namespace: sz-lh-uas-260408
|
||||
spec:
|
||||
ports:
|
||||
- name: web-svc-port
|
||||
port: 9528
|
||||
protocol: TCP
|
||||
targetPort: 9528
|
||||
selector:
|
||||
cmii.app: cmii-uav-platform-uasms
|
||||
cmii.type: frontend
|
||||
sessionAffinity: None
|
||||
type: ClusterIP
|
||||
---
|
||||
kind: ConfigMap
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: tenant-prefix-uasms
|
||||
namespace: sz-lh-uas-260408
|
||||
data:
|
||||
ingress-config.js: |-
|
||||
var __GlobalIngressConfig = {
|
||||
TenantEnvironment: "",
|
||||
CloudHOST: "dkzlw.szlhdata.com",
|
||||
ApplicationShortName: "uasms",
|
||||
TdtToken: '1f905fbf3a730cecc43256a87afaa2b8',
|
||||
AppClientId: "empty",
|
||||
brandConfig: {
|
||||
title: '深圳龙华低空应用公共服务平台',
|
||||
name: '',
|
||||
logoImg: './security.png'
|
||||
},
|
||||
MapConfigs:{
|
||||
center: [115.941198, 39.049656]
|
||||
}
|
||||
}
|
||||
70
81-202604-深圳龙华监管/k8s-app/k8s-ingress-13014.yaml
Normal file
70
81-202604-深圳龙华监管/k8s-app/k8s-ingress-13014.yaml
Normal file
@@ -0,0 +1,70 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: frontend-applications-ingress
|
||||
namespace: sz-lh-uas-260408
|
||||
labels:
|
||||
type: frontend
|
||||
octopus.control: all-ingress-config-wdd
|
||||
app.kubernetes.io/managed-by: octopus-control
|
||||
app.kubernetes.io/version: uas-2.2
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: nginx
|
||||
nginx.ingress.kubernetes.io/enable-cors: 'true'
|
||||
nginx.ingress.kubernetes.io/rewrite-target: /$1
|
||||
spec:
|
||||
rules:
|
||||
- host: dkzlw.szlhdata.com
|
||||
http:
|
||||
paths:
|
||||
- path: /uas/?(.*)
|
||||
pathType: ImplementationSpecific
|
||||
backend:
|
||||
service:
|
||||
name: cmii-uav-platform-uas
|
||||
port:
|
||||
number: 9528
|
||||
- path: /uasms/?(.*)
|
||||
pathType: ImplementationSpecific
|
||||
backend:
|
||||
service:
|
||||
name: cmii-uav-platform-uasms
|
||||
port:
|
||||
number: 9528
|
||||
---
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: all-gateways-ingress
|
||||
namespace: sz-lh-uas-260408
|
||||
labels:
|
||||
type: api-gateway
|
||||
octopus.control: all-ingress-config-1.1.0
|
||||
app.kubernetes.io/managed-by: octopus-control
|
||||
app.kubernetes.io/version: uas-2.2
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: nginx
|
||||
nginx.ingress.kubernetes.io/enable-cors: 'true'
|
||||
nginx.ingress.kubernetes.io/rewrite-target: /$1
|
||||
nginx.ingress.kubernetes.io/proxy-read-timeout: '3600'
|
||||
nginx.ingress.kubernetes.io/proxy-send-timeout: '3600'
|
||||
spec:
|
||||
rules:
|
||||
- host: dkzlw.szlhdata.com
|
||||
http:
|
||||
paths:
|
||||
- path: /uas/api/?(.*)
|
||||
pathType: ImplementationSpecific
|
||||
backend:
|
||||
service:
|
||||
name: cmii-uas-gateway
|
||||
port:
|
||||
number: 8080
|
||||
- path: /api/adapter/?(.*)
|
||||
pathType: ImplementationSpecific
|
||||
backend:
|
||||
service:
|
||||
name: cmii-uav-sense-adapter
|
||||
port:
|
||||
number: 8080
|
||||
|
||||
93
81-202604-深圳龙华监管/公网暴露/real-nginx-proxy.conf
Normal file
93
81-202604-深圳龙华监管/公网暴露/real-nginx-proxy.conf
Normal file
@@ -0,0 +1,93 @@
|
||||
server
|
||||
{
|
||||
location /uas/
|
||||
{
|
||||
rewrite ^/uas/(.*) /$1 break;
|
||||
proxy_pass http://172.16.32.10:31214;
|
||||
client_max_body_size 5120m;
|
||||
client_body_buffer_size 5120m;
|
||||
client_body_timeout 6000s;
|
||||
proxy_send_timeout 10000s;
|
||||
proxy_read_timeout 10000s;
|
||||
proxy_connect_timeout 600s;
|
||||
proxy_max_temp_file_size 5120m;
|
||||
proxy_request_buffering on;
|
||||
proxy_buffering off;
|
||||
proxy_buffer_size 4k;
|
||||
proxy_buffers 4 12k;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
}
|
||||
|
||||
location /uasms/
|
||||
{
|
||||
rewrite ^/uasms/(.*) /$1 break;
|
||||
proxy_pass http://172.16.32.10:31213;
|
||||
client_max_body_size 5120m;
|
||||
client_body_buffer_size 5120m;
|
||||
client_body_timeout 6000s;
|
||||
proxy_send_timeout 10000s;
|
||||
proxy_read_timeout 10000s;
|
||||
proxy_connect_timeout 600s;
|
||||
proxy_max_temp_file_size 5120m;
|
||||
proxy_request_buffering on;
|
||||
proxy_buffering off;
|
||||
proxy_buffer_size 4k;
|
||||
proxy_buffers 4 12k;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
}
|
||||
|
||||
location /uas/api/
|
||||
{
|
||||
rewrite ^/uas/api/(.*) /$1 break;
|
||||
proxy_pass http://172.16.32.10:31212;
|
||||
}
|
||||
|
||||
location /api/adapter/
|
||||
{
|
||||
rewrite ^/uas/adapter/(.*) /$1 break;
|
||||
proxy_pass http://cmii-uav-sense-adapter.sz-lh-uas-260408.svc.cluster.local:8080/;
|
||||
}
|
||||
|
||||
location /live-play/flv/
|
||||
{
|
||||
proxy_pass http://172.16.32.10:7088/;
|
||||
}
|
||||
|
||||
location /live-play/hls/
|
||||
{
|
||||
proxy_pass http://172.16.32.10:7088/zlm/hls/;
|
||||
}
|
||||
|
||||
location /live-play/webrtc
|
||||
{
|
||||
proxy_pass http://172.16.32.10:7088/index/api/webrtc;
|
||||
}
|
||||
|
||||
location /live-play/whip
|
||||
{
|
||||
proxy_pass http://172.16.32.10:7088/index/api/whip;
|
||||
}
|
||||
|
||||
location /live-replay/hls-by-time-range/
|
||||
{
|
||||
proxy_pass http://172.16.32.10:37086/api/v2/storage/hls-by-time-range/;
|
||||
}
|
||||
|
||||
location /live-replay/fetch_file/
|
||||
{
|
||||
proxy_pass http://172.16.32.10:37086/api/v2/storage/fetch_file/;
|
||||
}
|
||||
|
||||
location /live-replay/hls-downloader
|
||||
{
|
||||
proxy_pass http://172.16.32.10:37080/hls-downloader;
|
||||
}
|
||||
}
|
||||
21
81-202604-深圳龙华监管/服务暴露面.txt
Normal file
21
81-202604-深圳龙华监管/服务暴露面.txt
Normal file
@@ -0,0 +1,21 @@
|
||||
location /live-play/flv/ {
|
||||
proxy_pass http://172.16.32.10:7088/;
|
||||
}
|
||||
location /live-play/hls/ {
|
||||
proxy_pass http://172.16.32.10:7088/zlm/hls/;
|
||||
}
|
||||
location /live-play/webrtc {
|
||||
proxy_pass http://172.16.32.10:7088/index/api/webrtc;
|
||||
}
|
||||
location /live-play/whip {
|
||||
proxy_pass http://172.16.32.10:7088/index/api/whip;
|
||||
}
|
||||
location /live-replay/hls-by-time-range/ {
|
||||
proxy_pass http://172.16.32.10:37086/api/v2/storage/hls-by-time-range/;
|
||||
}
|
||||
location /live-replay/fetch_file/ {
|
||||
proxy_pass http://172.16.32.10:37086/api/v2/storage/fetch_file/;
|
||||
}
|
||||
location /live-replay/hls-downloader {
|
||||
proxy_pass http://172.16.32.10:37080/hls-downloader;
|
||||
}
|
||||
618
81-202604-深圳龙华监管/视频流媒体/all-configmap.yaml
Normal file
618
81-202604-深圳龙华监管/视频流媒体/all-configmap.yaml
Normal file
@@ -0,0 +1,618 @@
|
||||
---
|
||||
# Source: cmii-live-services/templates/cmii-live-helper-configmap.yaml
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-helper-config
|
||||
labels:
|
||||
app: cmii-live-helper
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
data:
|
||||
config.yaml: |
|
||||
app:
|
||||
port: 7080
|
||||
workers: 4
|
||||
log:
|
||||
level: INFO
|
||||
|
||||
client:
|
||||
zlm: "http://cmii-live-zlm:7088"
|
||||
|
||||
downloader:
|
||||
allow_domains: all
|
||||
---
|
||||
---
|
||||
# Source: cmii-live-services/templates/live-op-configmap.yaml
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-operator-config
|
||||
labels:
|
||||
app: cmii-live-operator
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
data:
|
||||
application.yaml: |
|
||||
debug: false
|
||||
server:
|
||||
port: 7086
|
||||
|
||||
spring:
|
||||
web:
|
||||
resources:
|
||||
static-locations: classpath:/static/
|
||||
main:
|
||||
allow-bean-definition-overriding: true
|
||||
allow-circular-references: true
|
||||
application:
|
||||
name: cmii-live-operator
|
||||
thymeleaf:
|
||||
check-template-location: false
|
||||
cache: false
|
||||
platform:
|
||||
info:
|
||||
name: cmii-live-operator
|
||||
description: cmii-live-operator
|
||||
version: 5.8.0
|
||||
scanPackage: com.cmii.live.op
|
||||
jackson:
|
||||
time-zone: GMT+8
|
||||
mvc:
|
||||
pathmatch:
|
||||
matching-strategy: ANT_PATH_MATCHER
|
||||
|
||||
datasource:
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
type: com.alibaba.druid.pool.DruidDataSource
|
||||
url: jdbc:mysql://helm-mysql:3306/cmii_live_operator?characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true
|
||||
username: k8s_admin
|
||||
password: fP#UaH6qQ3)8
|
||||
druid:
|
||||
initial-size: 10
|
||||
min-idle: 5
|
||||
max-active: 20
|
||||
max-wait: 60000
|
||||
time-between-eviction-runs-millis: 60000
|
||||
min-evictable-idle-time-millis: 300000
|
||||
validation-query: SELECT 1
|
||||
test-while-idle: true
|
||||
test-on-borrow: false
|
||||
test-on-return: false
|
||||
use-ping-method: false
|
||||
keep-alive: true
|
||||
redis:
|
||||
host: helm-redis-master
|
||||
port: 6379
|
||||
database: 1
|
||||
password: Mcache@4522
|
||||
|
||||
live:
|
||||
sync:
|
||||
pool:
|
||||
monitor:
|
||||
enabled: false
|
||||
core: 10
|
||||
max: 20
|
||||
queue: 1
|
||||
keepalive: 20
|
||||
|
||||
logging:
|
||||
config: classpath:logback-operator.xml
|
||||
level:
|
||||
root: info
|
||||
com.cmii.live.op.mapper: info
|
||||
|
||||
mybatis-plus:
|
||||
global-config:
|
||||
banner: false
|
||||
|
||||
knife4j:
|
||||
enable: true
|
||||
---
|
||||
---
|
||||
# Source: cmii-live-services/templates/live-proxy-configmap.yaml
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-proxy-config
|
||||
labels:
|
||||
app: cmii-live-proxy
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
data:
|
||||
application.yaml: |
|
||||
server:
|
||||
port: 7081
|
||||
|
||||
live:
|
||||
proxy:
|
||||
ffmpeg:
|
||||
ffmpeg-path: /usr/bin/ffmpeg
|
||||
ffprobe-path: /usr/bin/ffprobe
|
||||
ffplay-path: /usr/bin/ffplay
|
||||
check-win-pid: tasklist /FI "PID eq %s " /FO LIST
|
||||
check-unix-pid: ps -p %s
|
||||
os-name: windows
|
||||
upload:
|
||||
path: /proxy/uploads
|
||||
src-all-size: 4294967296
|
||||
dest-all-size: 4294967296
|
||||
ws:
|
||||
url: "172.16.32.10:37081"
|
||||
minio:
|
||||
endpoint: http://helm-minio:9000
|
||||
access-key: cmii
|
||||
secret-key: B#923fC7mk
|
||||
bucket-name: ilm-detect
|
||||
|
||||
spring:
|
||||
platform:
|
||||
info:
|
||||
name: cmii-live-proxy
|
||||
description: ffmpeg服务小工具
|
||||
version: 1.0.3
|
||||
scanPackage: com.cmii.live.proxy.web.controller
|
||||
profiles:
|
||||
active: local
|
||||
jackson:
|
||||
time-zone: GMT+8
|
||||
mvc:
|
||||
pathmatch:
|
||||
matching-strategy: ANT_PATH_MATCHER
|
||||
thymeleaf:
|
||||
check-template-location: false
|
||||
cache: false
|
||||
servlet:
|
||||
multipart:
|
||||
max-file-size: 1024MB
|
||||
max-request-size: 1024MB
|
||||
datasource:
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
type: com.alibaba.druid.pool.DruidDataSource
|
||||
druid:
|
||||
url: jdbc:mysql://helm-mysql:3306/cmii_live_proxy?characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8&allowPublicKeyRetrieval=true
|
||||
username: k8s_admin
|
||||
password: fP#UaH6qQ3)8
|
||||
initial-size: 5
|
||||
min-idle: 5
|
||||
max-active: 20
|
||||
max-wait: 60000
|
||||
time-between-eviction-runs-millis: 60000
|
||||
min-evictable-idle-time-millis: 300000
|
||||
max-evictable-idle-time-millis: 600000
|
||||
validation-query: SELECT 1
|
||||
test-while-idle: true
|
||||
test-on-borrow: false
|
||||
test-on-return: false
|
||||
filters: stat,wall,slf4j
|
||||
connection-properties: connectTimeout=10000;socketTimeout=30000
|
||||
redis:
|
||||
host: helm-redis-master
|
||||
port: 6379
|
||||
password: Mcache@4522
|
||||
database: 3
|
||||
timeout: 10s
|
||||
lettuce:
|
||||
pool:
|
||||
min-idle: 0
|
||||
max-idle: 10
|
||||
max-active: 10
|
||||
max-wait: -1ms
|
||||
|
||||
springdoc:
|
||||
api-docs:
|
||||
enabled: true
|
||||
swagger-ui:
|
||||
enabled: true
|
||||
|
||||
mybatis-plus:
|
||||
global-config:
|
||||
banner: false
|
||||
|
||||
logging:
|
||||
config: classpath:logback-proxy.xml
|
||||
level:
|
||||
com.cmii.live.proxy.web.mapper: info
|
||||
---
|
||||
---
|
||||
# Source: cmii-live-services/templates/wvp-configmap.yaml
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-wvp-config
|
||||
labels:
|
||||
app: wvp
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
data:
|
||||
application.yaml: |
|
||||
spring:
|
||||
cache:
|
||||
type: redis
|
||||
thymeleaf:
|
||||
cache: false
|
||||
mvc:
|
||||
async:
|
||||
request-timeout: 20000
|
||||
servlet:
|
||||
multipart:
|
||||
max-file-size: 10MB
|
||||
max-request-size: 100MB
|
||||
data:
|
||||
redis:
|
||||
host: helm-redis-master
|
||||
port: 6379
|
||||
database: 2
|
||||
password: Mcache@4522
|
||||
timeout: 10000
|
||||
datasource:
|
||||
type: com.zaxxer.hikari.HikariDataSource
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
url: jdbc:mysql://helm-mysql:3306/wvp?useUnicode=true&characterEncoding=UTF8&rewriteBatchedStatements=true&serverTimezone=PRC&useSSL=false&allowMultiQueries=true&allowPublicKeyRetrieval=true
|
||||
username: k8s_admin
|
||||
password: fP#UaH6qQ3)8
|
||||
|
||||
server:
|
||||
port: 7082
|
||||
ssl:
|
||||
enabled: false
|
||||
|
||||
sip:
|
||||
ip: ${NODE_IP}
|
||||
show-ip: ${NODE_IP}
|
||||
port: 7060
|
||||
domain: 5101000049
|
||||
id: "51010000492000000228"
|
||||
password: 035c7GB5cc
|
||||
register-time-interval: 60
|
||||
ptz-speed: 50
|
||||
keepalliveToOnline: true
|
||||
alarm: true
|
||||
timeout: 1000
|
||||
|
||||
media:
|
||||
id: koisi_gb_228
|
||||
ip: 127.0.0.1
|
||||
http-port: 7088
|
||||
http-ssl-port: 0
|
||||
flv-port: 7088
|
||||
flv-ssl-port: 7089
|
||||
ws-flv-port: 7088
|
||||
ws-flv-ssl-port: 7089
|
||||
rtp-proxy-port: 7088
|
||||
rtmp-port: 7089
|
||||
rtmp-ssl-port: 0
|
||||
rtsp-port: 7554
|
||||
rtsp-ssl-port: 0
|
||||
auto-config: false
|
||||
secret: 035c7GB5cc
|
||||
rtp:
|
||||
enable: true
|
||||
port-range: 7200,7250
|
||||
send-port-range: 30800,30990
|
||||
record-path: /opt/media/bin/www/record/
|
||||
record-day: 7
|
||||
record-assist-port: 0
|
||||
|
||||
user-settings:
|
||||
auto-apply-play: true
|
||||
play-timeout: 30000
|
||||
wait-track: false
|
||||
record-push-live: false
|
||||
record-sip: true
|
||||
stream-on-demand: true
|
||||
interface-authentication: true
|
||||
broadcast-for-platform: TCP-PASSIVE
|
||||
push-stream-after-ack: true
|
||||
send-to-platforms-when-id-lost: true
|
||||
interface-authentication-excludes:
|
||||
- /api/**
|
||||
push-authority: true
|
||||
|
||||
logging:
|
||||
config: classpath:logback-spring.xml
|
||||
---
|
||||
---
|
||||
# Source: cmii-live-services/templates/zlm-configmap.yaml
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-zlm-config
|
||||
labels:
|
||||
app: zlm
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
data:
|
||||
zlm.ini: |
|
||||
[api]
|
||||
apiDebug = 0
|
||||
secret = 035c7GB5cc
|
||||
snapRoot = ./www/snap/
|
||||
defaultSnap = ./www/logo.png
|
||||
downloadRoot = ./www
|
||||
|
||||
[ffmpeg]
|
||||
bin = /usr/bin/ffmpeg
|
||||
cmd = %s -re -i %s -c:a aac -strict -2 -ar 44100 -ab 48k -c:v libx264 -f flv %s
|
||||
log = ./ffmpeg/ffmpeg.log
|
||||
restart_sec = 0
|
||||
snap = %s -rtsp_transport tcp -i %s -y -f mjpeg -frames:v 1 %s
|
||||
|
||||
[protocol]
|
||||
modify_stamp = 2
|
||||
enable_audio = 1
|
||||
add_mute_audio = 0
|
||||
auto_close = 0
|
||||
continue_push_ms = 3000
|
||||
paced_sender_ms = 0
|
||||
enable_hls = 1
|
||||
enable_hls_fmp4 = 0
|
||||
enable_rtmp = 1
|
||||
enable_ts = 1
|
||||
enable_fmp4 = 1
|
||||
enable_rtsp = 1
|
||||
enable_mp4 = 0
|
||||
mp4_as_player = 0
|
||||
mp4_max_second = 3600
|
||||
mp4_save_path = ./www
|
||||
hls_save_path = ./www/zlm/hls
|
||||
hls_demand = 0
|
||||
rtsp_demand = 0
|
||||
rtmp_demand = 0
|
||||
ts_demand = 0
|
||||
fmp4_demand = 0
|
||||
|
||||
[general]
|
||||
enableVhost = 0
|
||||
flowThreshold = 1024
|
||||
enable_ffmpeg_log = 0
|
||||
listen_ip = ::
|
||||
maxStreamWaitMS = 0
|
||||
streamNoneReaderDelayMS = 120000
|
||||
resetWhenRePlay = 1
|
||||
mergeWriteMS = 0
|
||||
mediaServerId = koisi_gb_228
|
||||
wait_audio_track_data_ms = 1000
|
||||
wait_track_ready_ms = 8000
|
||||
wait_add_track_ms = 2000
|
||||
unready_frame_cache = 96
|
||||
check_nvidia_dev = 1
|
||||
broadcast_player_count_changed = 0
|
||||
|
||||
[hls]
|
||||
fileBufSize = 65536
|
||||
segDur = 10
|
||||
segNum = 3
|
||||
segDelay = 0
|
||||
segRetain = 5
|
||||
broadcastRecordTs = 1
|
||||
deleteDelaySec = 10
|
||||
segKeep = 0
|
||||
fastRegister = 0
|
||||
|
||||
[hook]
|
||||
enable = 1
|
||||
on_flow_report =
|
||||
on_http_access =
|
||||
# ZLM → Live Operator
|
||||
on_play = http://cmii-live-operator:7086/hooks/on_play
|
||||
on_publish = http://cmii-live-operator:7086/hooks/on_push
|
||||
on_stream_changed = http://cmii-live-operator:7086/hooks/on_stream_changed
|
||||
|
||||
# ZLM → WVP
|
||||
on_stream_none_reader = http://127.0.0.1:7082/index/hook/on_stream_none_reader
|
||||
on_stream_not_found = http://127.0.0.1:7082/index/hook/on_stream_not_found
|
||||
on_rtp_server_timeout = http://127.0.0.1:7082/index/hook/on_rtp_server_timeout
|
||||
on_send_rtp_stopped = http://127.0.0.1:7082/index/hook/on_send_rtp_stopped
|
||||
on_server_started = http://127.0.0.1:7082/index/hook/on_server_started
|
||||
on_server_keepalive = http://127.0.0.1:7082/index/hook/on_server_keepalive
|
||||
on_record_mp4 = http://127.0.0.1:7082/index/hook/on_record_mp4
|
||||
|
||||
on_server_exited =
|
||||
on_rtsp_auth =
|
||||
on_rtsp_realm =
|
||||
on_shell_login =
|
||||
# ZLM → ZLM OSS
|
||||
on_record_ts = http://127.0.0.1:7084/hooks/on_record_ts
|
||||
stream_changed_schemas = rtsp/rtmp/fmp4/ts/hls/hls.fmp4
|
||||
timeoutSec = 30
|
||||
alive_interval = 10.0
|
||||
retry = 1
|
||||
retry_delay = 3.0
|
||||
|
||||
[cluster]
|
||||
origin_url =
|
||||
timeout_sec = 15
|
||||
retry_count = 3
|
||||
|
||||
[http]
|
||||
port = 7088
|
||||
sslport = 7089
|
||||
charSet = utf-8
|
||||
keepAliveSecond = 30
|
||||
maxReqSize = 40960
|
||||
notFound = <html><head><title>404 Not Found</title></head><body><div>404 Not Found</div></body></html>
|
||||
rootPath = ./www
|
||||
sendBufSize = 65536
|
||||
dirMenu = 1
|
||||
virtualPath =
|
||||
forbidCacheSuffix =
|
||||
allow_cross_domains = 1
|
||||
allow_ip_range = ::1,127.0.0.1,172.1.0.0-172.31.255.255,192.168.0.0-192.168.255.255,10.0.0.0-10.255.255.255
|
||||
|
||||
[multicast]
|
||||
addrMax = 239.255.255.255
|
||||
addrMin = 239.0.0.0
|
||||
udpTTL = 64
|
||||
|
||||
[record]
|
||||
appName = record
|
||||
fileBufSize = 65536
|
||||
sampleMS = 500
|
||||
fastStart = 0
|
||||
fileRepeat = 0
|
||||
enableFmp4 = 0
|
||||
|
||||
[rtmp]
|
||||
port = 7935
|
||||
sslport = 0
|
||||
handshakeSecond = 15
|
||||
keepAliveSecond = 15
|
||||
directProxy = 1
|
||||
enhanced = 0
|
||||
|
||||
[rtp]
|
||||
audioMtuSize = 600
|
||||
videoMtuSize = 1400
|
||||
rtpMaxSize = 10
|
||||
lowLatency = 0
|
||||
h264_stap_a = 1
|
||||
|
||||
[rtp_proxy]
|
||||
port = 7100
|
||||
port_range = 7200-7250
|
||||
dumpDir =
|
||||
timeoutSec = 5
|
||||
h264_pt = 98
|
||||
h265_pt = 99
|
||||
ps_pt = 96
|
||||
opus_pt = 100
|
||||
gop_cache = 1
|
||||
rtp_g711_dur_ms = 100
|
||||
udp_recv_socket_buffer = 4194304
|
||||
|
||||
[rtc]
|
||||
bfilter=0
|
||||
datachannel_echo=0
|
||||
maxRtpCacheMS=5000
|
||||
maxRtpCacheSize=2048
|
||||
externIP = $(NODE_IP)
|
||||
port = 7090
|
||||
tcpPort = 7090
|
||||
timeoutSec = 30
|
||||
rembBitRate = 0
|
||||
preferredCodecA = PCMA,PCMU,opus,mpeg4-generic
|
||||
preferredCodecV = H264,H265,AV1,VP9,VP8
|
||||
start_bitrate = 0
|
||||
max_bitrate = 0
|
||||
min_bitrate = 0
|
||||
maxNackMS = 4000
|
||||
rtpCacheCheckInterval = 96
|
||||
nackMaxSize = 2048
|
||||
nackMaxMS = 3000
|
||||
nackMaxCount = 15
|
||||
nackIntervalRatio = 1.0
|
||||
nackRtpSize = 8
|
||||
|
||||
[srt]
|
||||
port = 7556
|
||||
timeoutSec = 5
|
||||
latencyMul = 4
|
||||
pktBufSize = 8192
|
||||
passPhrase=
|
||||
|
||||
[rtsp]
|
||||
port = 7554
|
||||
sslport = 0
|
||||
authBasic = 0
|
||||
directProxy = 1
|
||||
handshakeSecond = 15
|
||||
keepAliveSecond = 15
|
||||
lowLatency = 1
|
||||
rtpTransportType = -1
|
||||
|
||||
[shell]
|
||||
maxReqSize = 1024
|
||||
port = 0
|
||||
---
|
||||
---
|
||||
# Source: cmii-live-services/templates/zlm-oss-configmap.yaml
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-zlm-oss-config
|
||||
labels:
|
||||
app: media-suite
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
data:
|
||||
config.yaml: |
|
||||
app:
|
||||
env: default
|
||||
listen:
|
||||
host: 0.0.0.0
|
||||
port: 7084
|
||||
|
||||
workers: 4
|
||||
thread_pool: 8
|
||||
|
||||
log:
|
||||
level: INFO
|
||||
onfile_logger_interval: 10
|
||||
backup_on_fails: true
|
||||
skip_on_initializing_seconds: 4
|
||||
skip_hubs: "Hangar, ai-5g-a"
|
||||
file_dir:
|
||||
shared: "/cmii/share/hls"
|
||||
backup: "/cmii/backup"
|
||||
debug:
|
||||
save_all: false
|
||||
save_to: "UASMS"
|
||||
max_duration: 120
|
||||
|
||||
minio:
|
||||
endpoint: "http://helm-minio:9000"
|
||||
access_key: "cmii"
|
||||
secret_key: "B#923fC7mk"
|
||||
mysql:
|
||||
host: helm-mysql
|
||||
port: 3306
|
||||
username: k8s_admin
|
||||
password: fP#UaH6qQ3)8
|
||||
redis:
|
||||
host: helm-redis-master
|
||||
port: 6379
|
||||
database: 1
|
||||
password: Mcache@4522
|
||||
rabbitmq:
|
||||
host: helm-rabbitmq
|
||||
port: 5672
|
||||
username: admin
|
||||
password: nYcRN91r._hj
|
||||
|
||||
platforms:
|
||||
live_op:
|
||||
db_schema: "cmii_live_operator"
|
||||
|
||||
old_cmlc:
|
||||
cloud_live: "cmii-uav-cloud-live"
|
||||
quota: false
|
||||
oss_bucket: "ilm-detect"
|
||||
meta:
|
||||
src_id: "1323096648758464518"
|
||||
user_id: 0
|
||||
company_id: 0
|
||||
|
||||
uasms:
|
||||
scope_prefix: "UASMS"
|
||||
oss_bucket: "ilm-detect"
|
||||
meta:
|
||||
src_id: "1323096648758464523"
|
||||
platform: "REGULATOR"
|
||||
user_id: 0
|
||||
|
||||
lite:
|
||||
scope_prefix: "LITE"
|
||||
oss_bucket: "ilm-detect"
|
||||
routing_key: "sky.live.video"
|
||||
meta:
|
||||
src_id: "1111111112222222222"
|
||||
platform: "LITE"
|
||||
user_id: 0
|
||||
73
81-202604-深圳龙华监管/视频流媒体/cmii-live-helper-deployment.yaml
Normal file
73
81-202604-深圳龙华监管/视频流媒体/cmii-live-helper-deployment.yaml
Normal file
@@ -0,0 +1,73 @@
|
||||
---
|
||||
# Source: cmii-live-services/templates/cmii-live-helper-deployment.yaml
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-helper
|
||||
labels:
|
||||
app: cmii-live-helper
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
spec:
|
||||
type: NodePort
|
||||
ports:
|
||||
- name: http
|
||||
port: 7080
|
||||
targetPort: http
|
||||
nodePort: 37080
|
||||
protocol: TCP
|
||||
selector:
|
||||
app: cmii-live-helper
|
||||
release: cmii-live
|
||||
---
|
||||
# Source: cmii-live-services/templates/cmii-live-helper-deployment.yaml
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-helper
|
||||
labels:
|
||||
app: cmii-live-helper
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: cmii-live-helper
|
||||
release: cmii-live
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: cmii-live-helper
|
||||
release: cmii-live
|
||||
spec:
|
||||
containers:
|
||||
- name: cmii-live-helper
|
||||
image: "镜像仓库/cmii/cmii-hls-downloader:v2.7.4"
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 7080
|
||||
protocol: TCP
|
||||
env:
|
||||
- name: ALLOW_DOWNLOAD
|
||||
value: "all"
|
||||
volumeMounts:
|
||||
- name: config
|
||||
mountPath: /cmii/cmii-live-helper/config.yaml
|
||||
subPath: config.yaml
|
||||
resources:
|
||||
limits:
|
||||
cpu: "1"
|
||||
memory: 1Gi
|
||||
requests:
|
||||
cpu: 500m
|
||||
memory: 512Mi
|
||||
volumes:
|
||||
- name: config
|
||||
configMap:
|
||||
name: cmii-live-helper-config
|
||||
imagePullSecrets:
|
||||
- name: harborsecret
|
||||
105
81-202604-深圳龙华监管/视频流媒体/cmii-live-op-deployment.yaml
Normal file
105
81-202604-深圳龙华监管/视频流媒体/cmii-live-op-deployment.yaml
Normal file
@@ -0,0 +1,105 @@
|
||||
---
|
||||
# Source: cmii-live-services/templates/cmii-live-op-deployment.yaml
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-operator
|
||||
labels:
|
||||
app: cmii-live-operator
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
spec:
|
||||
type: NodePort
|
||||
ports:
|
||||
- name: http
|
||||
port: 7086
|
||||
targetPort: http
|
||||
nodePort: 37086
|
||||
protocol: TCP
|
||||
selector:
|
||||
app: cmii-live-operator
|
||||
release: cmii-live
|
||||
---
|
||||
# Source: cmii-live-services/templates/cmii-live-op-deployment.yaml
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-operator
|
||||
labels:
|
||||
app: cmii-live-operator
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: cmii-live-operator
|
||||
release: cmii-live
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: cmii-live-operator
|
||||
release: cmii-live
|
||||
spec:
|
||||
containers:
|
||||
- name: cmii-live-operator
|
||||
image: "镜像仓库/cmii/cmii-live-operator:v5.8.0"
|
||||
imagePullPolicy: Always
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 7086
|
||||
protocol: TCP
|
||||
env:
|
||||
- name: LIVE_IP_PUBLIC
|
||||
value: "172.16.32.10"
|
||||
- name: LIVE_IP_PRIVATE
|
||||
value: "172.16.32.10"
|
||||
- name: LIVE_OP_PORT_HTTP
|
||||
value: "7086"
|
||||
- name: LIVE_WVP_PORT_HTTP
|
||||
value: "7082"
|
||||
- name: LIVE_ZLM_PORT_HTTP
|
||||
value: "7088"
|
||||
- name: LIVE_ZLM_PORT_HTTPS
|
||||
value: "7089"
|
||||
- name: LIVE_ZLM_PORT_RTMP
|
||||
value: "7935"
|
||||
- name: LIVE_ZLM_PORT_RTSP
|
||||
value: "7554"
|
||||
- name: LIVE_ZLM_PORT_SRT
|
||||
value: "7556"
|
||||
- name: LIVE_ZLM_API_PASSWD
|
||||
value: "035c7GB5cc"
|
||||
- name: OSS_ENDPOINT
|
||||
value: "http://helm-minio:9000"
|
||||
- name: OSS_AK
|
||||
value: "cmii"
|
||||
- name: OSS_SK
|
||||
value: "B#923fC7mk"
|
||||
- name: RABBITMQ_HOST
|
||||
value: "helm-rabbitmq"
|
||||
- name: RABBITMQ_USERNAME
|
||||
value: "admin"
|
||||
- name: RABBITMQ_PASSWORD
|
||||
value: "nYcRN91r._hj"
|
||||
- name: RABBITMQ_PORT
|
||||
value: "5672"
|
||||
volumeMounts:
|
||||
- name: config
|
||||
mountPath: /cmii/application.yaml
|
||||
subPath: application.yaml
|
||||
resources:
|
||||
limits:
|
||||
cpu: "2"
|
||||
memory: 2Gi
|
||||
requests:
|
||||
cpu: "1"
|
||||
memory: 1Gi
|
||||
volumes:
|
||||
- name: config
|
||||
configMap:
|
||||
name: cmii-live-operator-config
|
||||
imagePullSecrets:
|
||||
- name: harborsecret
|
||||
89
81-202604-深圳龙华监管/视频流媒体/cmii-live-proxy-deployment.yaml
Normal file
89
81-202604-深圳龙华监管/视频流媒体/cmii-live-proxy-deployment.yaml
Normal file
@@ -0,0 +1,89 @@
|
||||
---
|
||||
# Source: cmii-live-services/templates/cmii-live-proxy-deployment.yaml
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-proxy
|
||||
labels:
|
||||
app: cmii-live-proxy
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
spec:
|
||||
type: NodePort
|
||||
ports:
|
||||
- name: http
|
||||
port: 7081
|
||||
targetPort: http
|
||||
nodePort: 37081
|
||||
protocol: TCP
|
||||
selector:
|
||||
app: cmii-live-proxy
|
||||
release: cmii-live
|
||||
---
|
||||
# Source: cmii-live-services/templates/cmii-live-proxy-deployment.yaml
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-proxy
|
||||
labels:
|
||||
app: cmii-live-proxy
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: cmii-live-proxy
|
||||
release: cmii-live
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: cmii-live-proxy
|
||||
release: cmii-live
|
||||
spec:
|
||||
containers:
|
||||
- name: cmii-live-proxy
|
||||
image: "镜像仓库/cmii/cmii-live-proxy:v1.0.3"
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 7081
|
||||
protocol: TCP
|
||||
env:
|
||||
- name: LIVE_IP_PRIVATE
|
||||
value: "172.16.32.10"
|
||||
- name: LIVE_ZLM_PORT_HTTP
|
||||
value: "7088"
|
||||
- name: LIVE_ZLM_PORT_HTTPS
|
||||
value: "7089"
|
||||
- name: LIVE_ZLM_PORT_RTMP
|
||||
value: "7935"
|
||||
- name: LIVE_ZLM_PORT_RTSP
|
||||
value: "7554"
|
||||
- name: LIVE_OP_PORT_HTTP
|
||||
value: "7086"
|
||||
volumeMounts:
|
||||
- name: config
|
||||
mountPath: /proxy/application.yaml
|
||||
subPath: application.yaml
|
||||
- name: shared-data
|
||||
mountPath: /cmii/uploads
|
||||
subPath: uploads
|
||||
resources:
|
||||
limits:
|
||||
cpu: "1"
|
||||
memory: 2Gi
|
||||
requests:
|
||||
cpu: "1"
|
||||
memory: 1Gi
|
||||
volumes:
|
||||
- name: config
|
||||
configMap:
|
||||
name: cmii-live-proxy-config
|
||||
- name: shared-data
|
||||
persistentVolumeClaim:
|
||||
claimName: cmii-live-shared-data-pvc
|
||||
imagePullSecrets:
|
||||
- name: harborsecret
|
||||
369
81-202604-深圳龙华监管/视频流媒体/media-suite-deployment.yaml
Normal file
369
81-202604-深圳龙华监管/视频流媒体/media-suite-deployment.yaml
Normal file
@@ -0,0 +1,369 @@
|
||||
---
|
||||
# Source: cmii-live-services/templates/media-suite-deployment.yaml
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-media-suite
|
||||
labels:
|
||||
app: media-suite
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: media-suite
|
||||
release: cmii-live
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: media-suite
|
||||
release: cmii-live
|
||||
spec:
|
||||
hostNetwork: true
|
||||
dnsPolicy: ClusterFirstWithHostNet
|
||||
# 配置到固定node上
|
||||
nodeSelector:
|
||||
kubernetes.io/hostname: "固定主机hostname"
|
||||
containers:
|
||||
# WVP Container
|
||||
- name: wvp
|
||||
image: "镜像仓库/cmii/wvp:v2.7.4"
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- name: wvp-http
|
||||
containerPort: 7082
|
||||
hostPort: 7082
|
||||
protocol: TCP
|
||||
- name: wvp-sip
|
||||
containerPort: 7060
|
||||
hostPort: 7060
|
||||
protocol: UDP
|
||||
env:
|
||||
- name: TZ
|
||||
value: "Asia/Shanghai"
|
||||
- name: NODE_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.hostIP
|
||||
- name: POD_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.hostIP
|
||||
volumeMounts:
|
||||
- name: wvp-config
|
||||
mountPath: /home/koisi/wvp.yaml
|
||||
subPath: application.yaml
|
||||
resources:
|
||||
limits:
|
||||
cpu: "2"
|
||||
memory: 4Gi
|
||||
requests:
|
||||
cpu: "1"
|
||||
memory: 2Gi
|
||||
# ZLM Container
|
||||
- name: zlm
|
||||
image: "镜像仓库/cmii/zlm:v2.7.5"
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- name: zlm-http
|
||||
containerPort: 7088
|
||||
hostPort: 7088
|
||||
protocol: TCP
|
||||
- name: zlm-https
|
||||
containerPort: 7089
|
||||
hostPort: 7089
|
||||
protocol: TCP
|
||||
- name: zlm-rtmp
|
||||
containerPort: 7935
|
||||
hostPort: 7935
|
||||
protocol: TCP
|
||||
- name: zlm-rtsp
|
||||
containerPort: 7554
|
||||
hostPort: 7554
|
||||
protocol: TCP
|
||||
- name: zlm-webrtc-tcp
|
||||
containerPort: 7090
|
||||
hostPort: 7090
|
||||
protocol: TCP
|
||||
- name: zlm-webrtc-udp
|
||||
containerPort: 7090
|
||||
hostPort: 7090
|
||||
protocol: UDP
|
||||
- name: zlm-srt
|
||||
containerPort: 7556
|
||||
hostPort: 7556
|
||||
protocol: TCP
|
||||
- name: zlm-rtp-proxy
|
||||
containerPort: 7100
|
||||
hostPort: 7100
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7200
|
||||
containerPort: 7200
|
||||
hostPort: 7200
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7201
|
||||
containerPort: 7201
|
||||
hostPort: 7201
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7202
|
||||
containerPort: 7202
|
||||
hostPort: 7202
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7203
|
||||
containerPort: 7203
|
||||
hostPort: 7203
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7204
|
||||
containerPort: 7204
|
||||
hostPort: 7204
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7205
|
||||
containerPort: 7205
|
||||
hostPort: 7205
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7206
|
||||
containerPort: 7206
|
||||
hostPort: 7206
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7207
|
||||
containerPort: 7207
|
||||
hostPort: 7207
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7208
|
||||
containerPort: 7208
|
||||
hostPort: 7208
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7209
|
||||
containerPort: 7209
|
||||
hostPort: 7209
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7210
|
||||
containerPort: 7210
|
||||
hostPort: 7210
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7211
|
||||
containerPort: 7211
|
||||
hostPort: 7211
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7212
|
||||
containerPort: 7212
|
||||
hostPort: 7212
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7213
|
||||
containerPort: 7213
|
||||
hostPort: 7213
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7214
|
||||
containerPort: 7214
|
||||
hostPort: 7214
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7215
|
||||
containerPort: 7215
|
||||
hostPort: 7215
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7216
|
||||
containerPort: 7216
|
||||
hostPort: 7216
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7217
|
||||
containerPort: 7217
|
||||
hostPort: 7217
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7218
|
||||
containerPort: 7218
|
||||
hostPort: 7218
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7219
|
||||
containerPort: 7219
|
||||
hostPort: 7219
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7220
|
||||
containerPort: 7220
|
||||
hostPort: 7220
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7221
|
||||
containerPort: 7221
|
||||
hostPort: 7221
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7222
|
||||
containerPort: 7222
|
||||
hostPort: 7222
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7223
|
||||
containerPort: 7223
|
||||
hostPort: 7223
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7224
|
||||
containerPort: 7224
|
||||
hostPort: 7224
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7225
|
||||
containerPort: 7225
|
||||
hostPort: 7225
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7226
|
||||
containerPort: 7226
|
||||
hostPort: 7226
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7227
|
||||
containerPort: 7227
|
||||
hostPort: 7227
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7228
|
||||
containerPort: 7228
|
||||
hostPort: 7228
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7229
|
||||
containerPort: 7229
|
||||
hostPort: 7229
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7230
|
||||
containerPort: 7230
|
||||
hostPort: 7230
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7231
|
||||
containerPort: 7231
|
||||
hostPort: 7231
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7232
|
||||
containerPort: 7232
|
||||
hostPort: 7232
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7233
|
||||
containerPort: 7233
|
||||
hostPort: 7233
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7234
|
||||
containerPort: 7234
|
||||
hostPort: 7234
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7235
|
||||
containerPort: 7235
|
||||
hostPort: 7235
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7236
|
||||
containerPort: 7236
|
||||
hostPort: 7236
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7237
|
||||
containerPort: 7237
|
||||
hostPort: 7237
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7238
|
||||
containerPort: 7238
|
||||
hostPort: 7238
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7239
|
||||
containerPort: 7239
|
||||
hostPort: 7239
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7240
|
||||
containerPort: 7240
|
||||
hostPort: 7240
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7241
|
||||
containerPort: 7241
|
||||
hostPort: 7241
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7242
|
||||
containerPort: 7242
|
||||
hostPort: 7242
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7243
|
||||
containerPort: 7243
|
||||
hostPort: 7243
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7244
|
||||
containerPort: 7244
|
||||
hostPort: 7244
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7245
|
||||
containerPort: 7245
|
||||
hostPort: 7245
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7246
|
||||
containerPort: 7246
|
||||
hostPort: 7246
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7247
|
||||
containerPort: 7247
|
||||
hostPort: 7247
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7248
|
||||
containerPort: 7248
|
||||
hostPort: 7248
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7249
|
||||
containerPort: 7249
|
||||
hostPort: 7249
|
||||
protocol: UDP
|
||||
- name: zlm-rtp-7250
|
||||
containerPort: 7250
|
||||
hostPort: 7250
|
||||
protocol: UDP
|
||||
env:
|
||||
- name: TZ
|
||||
value: "Asia/Shanghai"
|
||||
- name: NODE_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.hostIP
|
||||
- name: POD_IP
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: status.hostIP
|
||||
volumeMounts:
|
||||
- name: zlm-config
|
||||
mountPath: /home/koisi/zlm.ini
|
||||
subPath: zlm.ini
|
||||
- name: shared-data
|
||||
mountPath: /home/koisi/zlm/www/zlm/hls
|
||||
subPath: hls
|
||||
resources:
|
||||
limits:
|
||||
cpu: "2"
|
||||
memory: 4Gi
|
||||
requests:
|
||||
cpu: "2"
|
||||
memory: 2Gi
|
||||
# ZLM-OSS Container
|
||||
- name: zlm-oss
|
||||
image: "镜像仓库/cmii/zlm-oss-adaptor:v2.7.5"
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- name: zlm-oss-http
|
||||
containerPort: 7084
|
||||
hostPort: 7084
|
||||
protocol: TCP
|
||||
volumeMounts:
|
||||
- name: zlm-oss-config
|
||||
mountPath: /cmii/oss-adaptor/boot/config.yaml
|
||||
subPath: config.yaml
|
||||
- name: shared-data
|
||||
mountPath: /cmii/share/hls
|
||||
subPath: hls
|
||||
resources:
|
||||
limits:
|
||||
cpu: "2"
|
||||
memory: 2Gi
|
||||
requests:
|
||||
cpu: "1"
|
||||
memory: 1Gi
|
||||
|
||||
volumes:
|
||||
- name: wvp-config
|
||||
configMap:
|
||||
name: cmii-live-wvp-config
|
||||
- name: zlm-config
|
||||
configMap:
|
||||
name: cmii-live-zlm-config
|
||||
- name: zlm-oss-config
|
||||
configMap:
|
||||
name: cmii-live-zlm-oss-config
|
||||
- name: shared-data
|
||||
persistentVolumeClaim:
|
||||
claimName: cmii-live-shared-data-pvc
|
||||
imagePullSecrets:
|
||||
- name: harborsecret
|
||||
30
81-202604-深圳龙华监管/视频流媒体/nginx-proxy.conf
Normal file
30
81-202604-深圳龙华监管/视频流媒体/nginx-proxy.conf
Normal file
@@ -0,0 +1,30 @@
|
||||
location /live-play/flv/ {
|
||||
proxy_pass http://ZLM_HOST_IP:7088/;
|
||||
}
|
||||
location /live-play/hls/ {
|
||||
proxy_pass http://ZLM_HOST_IP:7088/zlm/hls/;
|
||||
}
|
||||
location /live-play/webrtc {
|
||||
proxy_pass http://ZLM_HOST_IP:7088/index/api/webrtc;
|
||||
}
|
||||
location /live-play/whip {
|
||||
proxy_pass http://ZLM_HOST_IP:7088/index/api/whip;
|
||||
}
|
||||
location /live-replay/hls-by-time-range/ {
|
||||
proxy_pass http://MASTET_IN_IP:37086/api/v2/storage/hls-by-time-range/;
|
||||
}
|
||||
location /live-replay/fetch_file/ {
|
||||
proxy_pass http://MASTET_IN_IP:37086/api/v2/storage/fetch_file/;
|
||||
}
|
||||
location /live-replay/hls-downloader {
|
||||
proxy_pass http://MASTET_IN_IP:37080/hls-downloader;
|
||||
}
|
||||
|
||||
|
||||
|
||||
zlmIp: zlm的nodeIp
|
||||
zlmHttpPort 对应values.yaml中的 zlm.ports.http的值
|
||||
liveOpIp: live-op服务的nodeIp
|
||||
liveOpHttpPort: 对应values.yaml中 liveOp.port,如果是nodePort就是 network.liveOpNodePort
|
||||
liveHelperIp: live-helper服务的nodeIp
|
||||
liveHelperHttpPort: 对应values.yaml中 liveHelper.port,如果是nodePort就是 network.liveHelperNodePort
|
||||
19
81-202604-深圳龙华监管/视频流媒体/pvc.yaml
Normal file
19
81-202604-深圳龙华监管/视频流媒体/pvc.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
# Source: cmii-live-services/templates/pvc.yaml
|
||||
# 单个共享 PVC,通过 subPath 区分不同服务的数据
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
namespace: sz-lh-uas-260408
|
||||
name: cmii-live-shared-data-pvc
|
||||
labels:
|
||||
app: media-suite
|
||||
chart: cmii-live-services-1.0.0
|
||||
release: cmii-live
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteMany
|
||||
resources:
|
||||
requests:
|
||||
storage: 10Gi
|
||||
storageClassName: nfs-prod-distribute
|
||||
4
81-202604-深圳龙华监管/视频流媒体/替换模板.txt
Normal file
4
81-202604-深圳龙华监管/视频流媒体/替换模板.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
sz-lh-uas-260408
|
||||
镜像仓库
|
||||
172.16.32.10
|
||||
固定主机hostname
|
||||
15
81-202604-深圳龙华监管/视频流媒体/镜像列表.txt
Normal file
15
81-202604-深圳龙华监管/视频流媒体/镜像列表.txt
Normal file
@@ -0,0 +1,15 @@
|
||||
harbor.cdcyy.com.cn/cmii/cmlc-live/zlm:v2.7.5
|
||||
harbor.cdcyy.com.cn/cmii/cmlc-live/wvp:v2.7.4
|
||||
harbor.cdcyy.com.cn/cmii/cmlc-live/cmii-live-operator:v5.8.0
|
||||
harbor.cdcyy.com.cn/cmii/cmlc-live/zlm-oss-adaptor:v2.7.5
|
||||
harbor.cdcyy.com.cn/cmii/cmlc-live/cmii-hls-downloader:v2.7.4
|
||||
harbor.cdcyy.com.cn/cmii/cmlc-live/cmii-live-proxy:v1.0.3
|
||||
|
||||
|
||||
|
||||
zlm=v2.7.5=2026-04-29=235.tar.gz
|
||||
wvp=v2.7.4=2026-04-29=520.tar.gz
|
||||
cmii-live-operator=v5.8.0=2026-04-29=624.tar.gz
|
||||
zlm-oss-adaptor=v2.7.5=2026-04-29=153.tar.gz
|
||||
cmii-hls-downloader=v2.7.4=2026-04-29=894.tar.gz
|
||||
cmii-live-proxy=v1.0.3=2026-04-29=433.tar.gz
|
||||
10
81-202604-深圳龙华监管/镜像/监管2.3-arm.txt
Normal file
10
81-202604-深圳龙华监管/镜像/监管2.3-arm.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uas-gateway=2.3.0-pro-20260403-arm=2026-04-03=684.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uas-lifecycle=2.3.0-0604-01-arm-arm=2026-06-09=581.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uas-perception-live=2.3.0-comp-arm=2026-04-10=882.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uas-datahub=2.3.0-comp-arm=2026-04-10=623.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-material-warehouse=2.3.0-pro-20260225-arm=2026-03-13=629.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-data-center=2.3.0-pro-20260225-arm=2026-03-13=987.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-platform-uasms=2.3.0-pro-20260609-arm=2026-06-09=104.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-platform-uas=2.3.0-pro-20260609-arm=2026-06-09=589.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uas-fusion=2.3.0-comp-arm=2026-04-03=217.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-sense-adapter=2.3.0-comp-arm=2026-04-03=949.tar.gz
|
||||
12
81-202604-深圳龙华监管/镜像/视频流媒体.txt
Normal file
12
81-202604-深圳龙华监管/镜像/视频流媒体.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/ai_and_live/live_deploy_images/arm64/
|
||||
|
||||
|
||||
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/ai_and_live/live_deploy_images/arm64/cmii-hls-downloader_v2.7.4-arm.img.tar
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/ai_and_live/live_deploy_images/arm64/cmii-live-operator_v5.8.0-arm.img.tar
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/ai_and_live/live_deploy_images/arm64/cmii-live-proxy_v1.0.3-arm.img.tar
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/ai_and_live/live_deploy_images/arm64/mysql_8.0.39-arm.img.tar
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/ai_and_live/live_deploy_images/arm64/redis_6.2.14-arm.img.tar
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/ai_and_live/live_deploy_images/arm64/wvp_v2.7.4-arm.img.tar
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/ai_and_live/live_deploy_images/arm64/zlm-oss-adaptor_v2.7.5-arm.img.tar
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/ai_and_live/live_deploy_images/arm64/zlm_v2.7.5-arm.img.tar
|
||||
126
84-202605-北京三河测试/sense_adapter_v2.3.0_init_mysql.sql
Normal file
126
84-202605-北京三河测试/sense_adapter_v2.3.0_init_mysql.sql
Normal file
@@ -0,0 +1,126 @@
|
||||
-- 全新部署时,执行这个脚本:
|
||||
DROP DATABASE IF EXISTS `sense_adapter`;
|
||||
|
||||
-- 创建数据库
|
||||
CREATE DATABASE IF NOT EXISTS sense_adapter;
|
||||
USE `sense_adapter`;
|
||||
|
||||
-- DROP TABLE IF EXISTS `regulator`;
|
||||
-- DROP TABLE IF EXISTS `sf_device`;
|
||||
-- DROP TABLE IF EXISTS `sf_sense_capability`;
|
||||
-- DROP TABLE IF EXISTS `sf_sense_task`;
|
||||
-- DROP TABLE IF EXISTS `sense_data_sink_config`;
|
||||
|
||||
CREATE TABLE `regulator` (
|
||||
`id` bigint NOT NULL COMMENT '厂商id',
|
||||
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '厂商昵称',
|
||||
`is_system_admin` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否是系统管理员',
|
||||
`user_type` varchar(255) COMMENT '用户类型, 0:管理员; 1:中信科CICIM, 2:Erission, 3:Huawei,4:ZTE',
|
||||
`telephone` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '厂商手机号',
|
||||
`avatar_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '头像地址',
|
||||
`authentication_status` int NULL COMMENT '认证状态,0: 未认证,1已认证',
|
||||
`authentication_time` datetime(6) DEFAULT NULL COMMENT '认证时间',
|
||||
`password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '登录密码',
|
||||
`password_modify_time` datetime(6) DEFAULT CURRENT_TIMESTAMP(6) COMMENT '更新密码时间',
|
||||
`is_frozen` bit(1) NOT NULL DEFAULT b'0' COMMENT '用户是否被禁用,0:否,1:禁用',
|
||||
`is_del` bit(1) NOT NULL DEFAULT b'0' COMMENT '用户是否被删除,0:否,1:删除',
|
||||
`create_at` datetime(6) DEFAULT NULL COMMENT '创建时间',
|
||||
`create_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '创建用户',
|
||||
`update_at` datetime(6) DEFAULT NULL COMMENT '更新时间',
|
||||
`update_by` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新用户',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin COMMENT='监管者表';
|
||||
|
||||
-- 创建默认的管理员和4个厂商的账户;
|
||||
-- 管理员:15928589640 Cmii112233
|
||||
-- CICTM 15928589601 c5Wxu)RrM
|
||||
-- Ericsson 15928589602 eQKcu&8!
|
||||
-- Huawei 15928589603 h0}oF!Mji
|
||||
-- ZTE 15928589604 z6(Z*!StF
|
||||
-- truncate table regulator;
|
||||
INSERT INTO `regulator` (`id`, `name`, `is_system_admin`, `telephone`, `avatar_url`, `authentication_status`, `authentication_time`, `password`, `password_modify_time`, `is_frozen`, `is_del`, `create_at`, `create_by`, `update_at`, `update_by`, `user_type`) VALUES (1,'Admin',_binary '\0','6d46c798b1385c0294badf9903586923',NULL,0,NULL,'$2a$10$FYElzh8BsxQFr0Da.MMDuOpH.Ynm57QGBRsgRIzQowgZIdvXbAb3G','2024-09-23 18:40:49.045124',_binary '\0',_binary '\0','2024-09-23 18:40:47.183882','r_1',NULL,NULL,'0'),(552450964452278272,'CICTM',_binary '\0','ab674bbb9a1298f873464464d0108af1',NULL,0,NULL,'$2a$10$twsDhJrQ8yzt2pP9MvUmTe4YpCD7lJk/Thk1zdrGq9UIQMLWcldnq','2024-09-21 11:22:53.966212',_binary '\0',_binary '\0','2024-09-21 11:22:53.966212','r_2',NULL,NULL,'1'),(552451165640458240,'Ericsson',_binary '\0','74bd84f82b1a4067c0b1f941789f546a',NULL,0,NULL,'$2a$10$5mK/u4upnJLcxbGlLBoTs.Uc9myqREGK1ztRykceL1QtJoXxkj4Di','2024-09-21 11:23:41.935420',_binary '\0',_binary '\0','2024-09-21 11:23:41.935420','r_2',NULL,NULL,'2'),(552451398919258112,'Huawei',_binary '\0','df1eb215362d7dcda6d0341d360c2610',NULL,0,NULL,'$2a$10$lD9ruy3WlsHmGAda1.SL1ey17JrJ0/KFdD8WaSluL5zbswrS18dLC','2024-09-21 11:24:37.553081',_binary '\0',_binary '\0','2024-09-21 11:24:37.553081','r_2',NULL,NULL,'3'),(552451636522385408,'ZTE',_binary '\0','a91fd8159a002ee51ca59f02dcc92b1f',NULL,0,NULL,'$2a$10$xO/EDFvB4TlI2gjfjYP82O.HgAoDeZw3SWoeLiTGHRPXtGDK5rTv2','2024-09-21 11:25:34.202789',_binary '\0',_binary '\0','2024-09-21 11:25:34.202789','r_2',NULL,NULL,'4');
|
||||
|
||||
CREATE TABLE `sf_device` (
|
||||
`sf_dev_id` INT NOT NULL COMMENT 'SF ID',
|
||||
`sf_name` VARCHAR(255) COMMENT 'SF名称',
|
||||
`sf_vender_id` TINYINT COMMENT '厂商编号, 1: CICTM; 2: Ericsson; 3: Huawei; 4: ZTE',
|
||||
|
||||
-- 核心网增加的字段:
|
||||
`sf_type` TINYINT COMMENT 'SF类型, 0: 无线SF, 1: SCF, 2: SG, 3, NEF',
|
||||
`scf_url` VARCHAR(4000) COMMENT 'SCF URL',
|
||||
`subscription_id` VARCHAR(255) COMMENT 'SCF分配, 感知能力订阅ID',
|
||||
`civic_address_list` MEDIUMTEXT COMMENT '感知业务开展范围JSON',
|
||||
`af_notify_url_head` VARCHAR(4000) COMMENT 'AF控制面接收SF通知用的URL的头(因为AF可能有多个网络,需要告知SCF/SG,用哪个URL给自己发消息)',
|
||||
`scf_auth_code` VARCHAR(4000) COMMENT '核心网鉴权用的base64字符串, 转换方式: appId:appPassword 转换成base64编码',
|
||||
|
||||
`company_id` VARCHAR(255) COMMENT '所属公司/机构',
|
||||
`province_code` VARCHAR(255) COMMENT '省级行政区',
|
||||
`city_code` VARCHAR(255) COMMENT '地级行政区',
|
||||
`district_code` VARCHAR(255) COMMENT '区',
|
||||
`remarks` TEXT COMMENT '备注',
|
||||
`tcp_keep_alive_interval` INT COMMENT '控制面心跳时间间隔(秒)',
|
||||
|
||||
`is_delete` BOOLEAN COMMENT '是否已经删除',
|
||||
|
||||
`create_usr_id` VARCHAR(255) COMMENT '创建此SF的用户ID',
|
||||
`create_date` DATETIME COMMENT '创建此SF的日期',
|
||||
|
||||
`upd_usr_id` VARCHAR(255) COMMENT '更新此表的用户ID',
|
||||
`upd_date` DATETIME COMMENT '更新此表的日期',
|
||||
PRIMARY KEY (`sf_dev_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='SF设备信息表';
|
||||
|
||||
CREATE TABLE `sf_sense_task` (
|
||||
`sf_dev_id` INT NOT NULL COMMENT 'SF ID',
|
||||
`task_id` INT NOT NULL COMMENT '任务ID',
|
||||
`task_name` VARCHAR(255) COMMENT '任务名字',
|
||||
`json_string` MEDIUMTEXT COMMENT 'StartSenseTaskReqBean JSON字符串',
|
||||
`company_id` VARCHAR(255) COMMENT '所属公司/机构',
|
||||
`remarks` TEXT COMMENT '备注',
|
||||
`is_enable` BOOLEAN COMMENT '是否已经停止',
|
||||
|
||||
`sf_resp_result_status` TINYINT COMMENT 'SF返回的执行状态, 0:success, 1:fail',
|
||||
`sf_resp_failure_reason` VARCHAR(255) COMMENT 'SF返回的失败原因',
|
||||
|
||||
`is_delete` BOOLEAN COMMENT '是否已经删除',
|
||||
|
||||
|
||||
-- 核心网增加的字段:
|
||||
`data_plane_domain_name` VARCHAR(255) COMMENT '数据面上报IP的domain name,整网规划决定,用于SPF选择用于对接AF的本端接口,由1-20个字母、数字、下划线、横杠组成',
|
||||
`data_plane_ipv4_addr` VARCHAR(255) COMMENT '数据面上报IP,IPv4和IPv6只能且必须携带其中1个',
|
||||
`data_plane_ipv6_addr` VARCHAR(255) COMMENT '数据面上报IP,IPv4和IPv6只能且必须携带其中1个',
|
||||
`data_plane_port` INT COMMENT 'AF接收用户面数据的端口号',
|
||||
`civic_address_list` MEDIUMTEXT COMMENT '感知业务开展范围JSON',
|
||||
|
||||
`create_usr_id` VARCHAR(255) COMMENT '创建此SF的用户ID',
|
||||
`create_date` DATETIME COMMENT '创建此SF的日期',
|
||||
|
||||
`upd_usr_id` VARCHAR(255) COMMENT '更新此表的用户ID',
|
||||
`upd_date` DATETIME COMMENT '更新此表的日期',
|
||||
PRIMARY KEY (`sf_dev_id`, `task_id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='SF感知任务信息表';
|
||||
|
||||
-- 下面数据库表,需要从 uav_industrial_portfolio 库中迁移过来.
|
||||
CREATE TABLE `sense_data_sink_config` (
|
||||
`id` bigint NOT NULL COMMENT '主键id',
|
||||
`code` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '分发者编码',
|
||||
`name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT '分发者名称',
|
||||
`type` int DEFAULT NULL COMMENT '分发者类型',
|
||||
`public_key` varchar(4096) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '公钥',
|
||||
`config` varchar(4096) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '配置',
|
||||
`is_delete` tinyint(1) DEFAULT NULL COMMENT '是否删除',
|
||||
`upd_usr_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL COMMENT '更新用户id',
|
||||
`upd_date` timestamp NULL DEFAULT NULL COMMENT '更新时间',
|
||||
PRIMARY KEY (`id`) USING BTREE,
|
||||
KEY `idx_sense_code` (`code`) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='SF adapter的分发配置表';
|
||||
|
||||
CREATE TABLE `core5g_coop_uav_sub` (
|
||||
`subscription_id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID',
|
||||
`sub_dto_json` MEDIUMTEXT NOT NULL COMMENT '核心网订阅信息Core5gPosInfoSubscribeReqDTO的JSON字符串',
|
||||
`notif_uri` varchar(4096) NOT NULL COMMENT '核心网提供的用于接收无人机位置信息的URI',
|
||||
|
||||
PRIMARY KEY (`subscription_id`)
|
||||
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin ROW_FORMAT=DYNAMIC COMMENT='核心网合作无人机轨迹订阅信息表';
|
||||
|
||||
26
85-20260617-江西环境整理/0-资源草稿.md
Normal file
26
85-20260617-江西环境整理/0-资源草稿.md
Normal file
@@ -0,0 +1,26 @@
|
||||
老平台密码
|
||||
Super.123@
|
||||
|
||||
二期密码
|
||||
P@ssw0rd!2025
|
||||
|
||||
老平台中 去除
|
||||
10.20.1.132 没在集群 GPU+存储 回收
|
||||
10.20.1.142 10.20.1.144 10.20.1.145 暂时不退 老平台部署在这里 一个月后删除即可
|
||||
二期通感平台
|
||||
去除
|
||||
10.32.8.135,10.32.8.136,10.32.8.137,10.32.8.138.
|
||||
保留
|
||||
10.32.8.139 存储 部署MINIO
|
||||
10.32.8.140 GPU
|
||||
|
||||
新的部署方案
|
||||
10.20.1.133
|
||||
10.20.1.141
|
||||
10.32.8.139 存储 部署MINIO
|
||||
10.32.8.140 GPU
|
||||
|
||||
|
||||
需求:
|
||||
1. 使用K8S的方式部署最新的视频流媒体 老集群 10.20.1.133 或者 10.20.1.141 上面
|
||||
2. 检查 10.32.8.139 存储 部署MINIO
|
||||
28
85-20260617-江西环境整理/1-节点驱逐.md
Normal file
28
85-20260617-江西环境整理/1-节点驱逐.md
Normal file
@@ -0,0 +1,28 @@
|
||||
主机节点的信息为:
|
||||
[root@master-node ~]# kubectl get node -o wide --show-labels
|
||||
NAME STATUS ROLES AGE VERSION INTERNAL-IP EXTERNAL-IP OS-IMAGE KERNEL-VERSION CONTAINER-RUNTIME LABELS
|
||||
10.20.1.130 Ready controlplane,etcd,worker 2y272d v1.20.4 10.20.1.130 <none> openEuler 20.03 (LTS-SP3) 4.19.90-2209.1.0.0166.oe1.x86_64 docker://20.10.15 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,ingress-deploy=true,kubernetes.io/arch=amd64,kubernetes.io/hostname=10.20.1.130,kubernetes.io/os=linux,node-role.kubernetes.io/controlplane=true,node-role.kubernetes.io/etcd=true,node-role.kubernetes.io/worker=true,uavcloud.env=demo
|
||||
10.20.1.133 Ready worker 2y272d v1.20.4 10.20.1.133 <none> openEuler 20.03 (LTS-SP3) 4.19.90-2209.1.0.0166.oe1.x86_64 docker://20.10.15 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/arch=amd64,kubernetes.io/hostname=10.20.1.133,kubernetes.io/os=linux,node-role.kubernetes.io/worker=true,uavcloud.env=demo
|
||||
10.20.1.134 Ready worker 2y272d v1.20.4 10.20.1.134 <none> openEuler 20.03 (LTS-SP3) 4.19.90-2209.1.0.0166.oe1.x86_64 docker://20.10.15 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,kubernetes.io/arch=amd64,kubernetes.io/hostname=10.20.1.134,kubernetes.io/os=linux,mysql-deploy=true,node-role.kubernetes.io/worker=true
|
||||
10.20.1.141 Ready worker 510d v1.20.4 10.20.1.141 <none> BigCloud Enterprise Linux For Euler 21.10 LTS 4.19.90-2107.6.0.0192.8.oe1.bclinux.x86_64 docker://20.10.15 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,ingress-deploy=true,kubernetes.io/arch=amd64,kubernetes.io/hostname=10.20.1.141,kubernetes.io/os=linux,node-role.kubernetes.io/worker=true,uavcloud.env=demo
|
||||
10.20.1.142 Ready worker 510d v1.20.4 10.20.1.142 <none> BigCloud Enterprise Linux For Euler 21.10 LTS 4.19.90-2107.6.0.0192.8.oe1.bclinux.x86_64 docker://20.10.15 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,ingress-deploy=true,kubernetes.io/arch=amd64,kubernetes.io/hostname=10.20.1.142,kubernetes.io/os=linux,node-role.kubernetes.io/worker=true,uavcloud.env=demo
|
||||
10.20.1.144 Ready worker 510d v1.20.4 10.20.1.144 <none> BigCloud Enterprise Linux For Euler 21.10 LTS 4.19.90-2107.6.0.0192.8.oe1.bclinux.x86_64 docker://20.10.15 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,ingress-deploy=true,kubernetes.io/arch=amd64,kubernetes.io/hostname=10.20.1.144,kubernetes.io/os=linux,node-role.kubernetes.io/worker=true,uavcloud.env=demo
|
||||
10.20.1.145 Ready worker 510d v1.20.4 10.20.1.145 <none> BigCloud Enterprise Linux For Euler 21.10 LTS 4.19.90-2107.6.0.0192.8.oe1.bclinux.x86_64 docker://20.10.15 beta.kubernetes.io/arch=amd64,beta.kubernetes.io/os=linux,ingress-deploy=true,kubernetes.io/arch=amd64,kubernetes.io/hostname=10.20.1.145,kubernetes.io/os=linux,node-role.kubernetes.io/worker=true,uavcloud.env=demo
|
||||
|
||||
我现在的需求是
|
||||
1. 需要清退10.20.1.142,10.20.1.144 10.20.1.145这几台机器,但是要在一个月之后,
|
||||
2. jxyd内部的deployment的生命周期与这几台机器的周期相同
|
||||
3. jxyd内部的中间件可以保留,后续其他的平台需要使用,因此需要调度到 10.20.1.133 10.20.1.134 10.20.1.141之上
|
||||
4. 需要检查每个deployment的资源信息
|
||||
1. 如果现在的资源比这个大,需要统一调整为 resources:
|
||||
limits:
|
||||
cpu: '2'
|
||||
memory: 2Gi
|
||||
requests:
|
||||
cpu: '1'
|
||||
memory: 500Mi
|
||||
2. 调整中需要同步修改 container的 -env:
|
||||
- name: CUST_JAVA_OPTS
|
||||
value: '-Xms500m -Xmx2000m -Dlog4j2.formatMsgNoLookups=true'
|
||||
|
||||
请你结合上面的需求,给我完整解决方案, 可以使用python3 shell kubectl结合的方式
|
||||
679
85-20260617-江西环境整理/江西移动-老平台.doc
Normal file
679
85-20260617-江西环境整理/江西移动-老平台.doc
Normal file
@@ -0,0 +1,679 @@
|
||||
Date: Wed, 17 Jun 2026 10:07:51 +0800 (CST)
|
||||
Message-ID: <341782432.932.1781662071469@localhost>
|
||||
Subject: Exported From Confluence
|
||||
MIME-Version: 1.0
|
||||
Content-Type: multipart/related;
|
||||
boundary="----=_Part_931_1321216193.1781662071468"
|
||||
|
||||
------=_Part_931_1321216193.1781662071468
|
||||
Content-Type: text/html; charset=UTF-8
|
||||
Content-Transfer-Encoding: quoted-printable
|
||||
Content-Location: file:///C:/exported.html
|
||||
|
||||
<html xmlns:o=3D'urn:schemas-microsoft-com:office:office'
|
||||
xmlns:w=3D'urn:schemas-microsoft-com:office:word'
|
||||
xmlns:v=3D'urn:schemas-microsoft-com:vml'
|
||||
xmlns=3D'urn:w3-org-ns:HTML'>
|
||||
<head>
|
||||
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dutf-8=
|
||||
">
|
||||
<title>=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8-=E8=80=81=E5=B9=B3=E5=8F=B0=
|
||||
</title>
|
||||
<!--[if gte mso 9]>
|
||||
<xml>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:TargetScreenSize>1024x640</o:TargetScreenSize>
|
||||
<o:PixelsPerInch>72</o:PixelsPerInch>
|
||||
<o:AllowPNG/>
|
||||
</o:OfficeDocumentSettings>
|
||||
<w:WordDocument>
|
||||
<w:View>Print</w:View>
|
||||
<w:Zoom>90</w:Zoom>
|
||||
<w:DoNotOptimizeForBrowser/>
|
||||
</w:WordDocument>
|
||||
</xml>
|
||||
<![endif]-->
|
||||
<style>
|
||||
<!--
|
||||
@page Section1 {
|
||||
size: 8.5in 11.0in;
|
||||
margin: 1.0in;
|
||||
mso-header-margin: .5in;
|
||||
mso-footer-margin: .5in;
|
||||
mso-paper-source: 0;
|
||||
}
|
||||
|
||||
table {
|
||||
border: solid 1px;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table td, table th {
|
||||
border: solid 1px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
td {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
tr {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
|
||||
div.Section1 {
|
||||
page: Section1;
|
||||
}
|
||||
|
||||
/* Confluence print stylesheet. Common to all themes for print medi=
|
||||
a */
|
||||
/* Full of !important until we improve batching for print CSS */
|
||||
|
||||
@media print {
|
||||
#main {
|
||||
padding-bottom: 1em !important; /* The default padding of 6em is to=
|
||||
o much for printouts */
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Arial, Helvetica, FreeSans, sans-serif;
|
||||
font-size: 10pt;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
body, #full-height-container, #main, #page, #content, .has-personal-sid=
|
||||
ebar #content {
|
||||
background: #fff !important;
|
||||
color: #000 !important;
|
||||
border: 0 !important;
|
||||
width: 100% !important;
|
||||
height: auto !important;
|
||||
min-height: auto !important;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
a, a:link, a:visited, a:focus, a:hover, a:active {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
#content h1,
|
||||
#content h2,
|
||||
#content h3,
|
||||
#content h4,
|
||||
#content h5,
|
||||
#content h6 {
|
||||
font-family: Arial, Helvetica, FreeSans, sans-serif;
|
||||
page-break-after: avoid;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: Monaco, "Courier New", monospace;
|
||||
}
|
||||
|
||||
#header,
|
||||
.aui-header-inner,
|
||||
#navigation,
|
||||
#sidebar,
|
||||
.sidebar,
|
||||
#personal-info-sidebar,
|
||||
.ia-fixed-sidebar,
|
||||
.page-actions,
|
||||
.navmenu,
|
||||
.ajs-menu-bar,
|
||||
.noprint,
|
||||
.inline-control-link,
|
||||
.inline-control-link a,
|
||||
a.show-labels-editor,
|
||||
.global-comment-actions,
|
||||
.comment-actions,
|
||||
.quick-comment-container,
|
||||
#addcomment {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* CONF-28544 cannot print multiple pages in IE */
|
||||
#splitter-content {
|
||||
position: relative !important;
|
||||
}
|
||||
|
||||
.comment .date::before {
|
||||
content: none !important; /* remove middot for print view */
|
||||
}
|
||||
|
||||
h1.pagetitle img {
|
||||
height: auto;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.print-only {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#footer {
|
||||
position: relative !important; /* CONF-17506 Place the footer at en=
|
||||
d of the content */
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: none;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#poweredby {
|
||||
border-top: none;
|
||||
background: none;
|
||||
}
|
||||
|
||||
#poweredby li.print-only {
|
||||
display: list-item;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
#poweredby li.noprint {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* no width controls in print */
|
||||
.wiki-content .table-wrap,
|
||||
.wiki-content p,
|
||||
.panel .codeContent,
|
||||
.panel .codeContent pre,
|
||||
.image-wrap {
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
||||
/* TODO - should this work? */
|
||||
#children-section,
|
||||
#comments-section .comment,
|
||||
#comments-section .comment .comment-body,
|
||||
#comments-section .comment .comment-content,
|
||||
#comments-section .comment p {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
#page-children a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/**
|
||||
hide twixies
|
||||
|
||||
the specificity here is a hack because print styles
|
||||
are getting loaded before the base styles. */
|
||||
#comments-section.pageSection .section-header,
|
||||
#comments-section.pageSection .section-title,
|
||||
#children-section.pageSection .section-header,
|
||||
#children-section.pageSection .section-title,
|
||||
.children-show-hide {
|
||||
padding-left: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.children-show-hide.icon {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* personal sidebar */
|
||||
.has-personal-sidebar #content {
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
.has-personal-sidebar #content .pageSection {
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
.no-print, .no-print * {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8-=E8=80=81=E5=B9=B3=E5=8F=B0</h=
|
||||
1>
|
||||
<div class=3D"Section1">
|
||||
<p>=E9=9C=80=E6=B1=82=E6=9D=A5=E6=BA=90=EF=BC=9A=E5=8D=A2=E7=A6=B9=
|
||||
=E6=9D=89</p>
|
||||
<h2 id=3D"id-=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E8=80=81=E5=B9=B3=E5=8F=
|
||||
=B0-=E8=B5=84=E6=BA=90=E6=B8=85=E5=8D=95">=E8=B5=84=E6=BA=90=E6=B8=85=E5=8D=
|
||||
=95</h2>
|
||||
<h3 id=3D"id-=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E8=80=81=E5=B9=B3=E5=8F=
|
||||
=B0-=E7=A1=AC=E4=BB=B6=E8=B5=84=E6=BA=90">=E7=A1=AC=E4=BB=B6=E8=B5=84=E6=BA=
|
||||
=90</h3>
|
||||
<div class=3D"table-wrap">
|
||||
<table class=3D"relative-table wrapped confluenceTable" style=3D"width: 83.=
|
||||
5982%;">
|
||||
<colgroup>
|
||||
<col style=3D"width: 14.3589%;">
|
||||
<col style=3D"width: 39.5798%;">
|
||||
<col style=3D"width: 6.87219%;">
|
||||
<col style=3D"width: 13.3773%;">
|
||||
<col style=3D"width: 16.0164%;">
|
||||
<col style=3D"width: 9.818%;">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">=E4=BA=A7=E5=93=81</td>
|
||||
<td class=3D"confluenceTd">=E8=A7=84=E6=A0=BC</td>
|
||||
<td class=3D"confluenceTd">=E6=95=B0=E9=87=8F</td>
|
||||
<td class=3D"confluenceTd">=E6=93=8D=E4=BD=9C=E7=B3=BB=E7=BB=9F</td>
|
||||
<td class=3D"confluenceTd">=E5=B9=B3=E9=9D=A2=E4=B8=80<br>10.20.1.128/27</t=
|
||||
d>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">=E4=BA=91=E4=B8=BB=E6=9C=BA</td>
|
||||
<td class=3D"confluenceTd">=E9=80=9A=E7=94=A8=E7=8B=AC=E4=BA=AB=E5=9E=8B | =
|
||||
c7n.xlarge.2 | 8vCPUs | 32 GiB|=E7=B3=BB=E7=BB=9F=E7=9B=98 =E9=AB=98IO 60G =
|
||||
|=E6=95=B0=E6=8D=AE=E7=9B=98 =E9=AB=98IO 500G</td>
|
||||
<td class=3D"confluenceTd">1</td>
|
||||
<td class=3D"confluenceTd">openEuler</td>
|
||||
<td class=3D"confluenceTd">10.20.1.130</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><p><br></p><p><strong>36.138.132.2=
|
||||
40</strong></p><p>master</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">GPU=E4=BA=91=E4=B8=BB=E6=9C=BA</td>
|
||||
<td class=3D"confluenceTd">GPU=E5=8A=A0=E9=80=9F=E5=9E=8B | pi2.2xlarge.4 |=
|
||||
8vCPUs | 32 GiB | GPU=E6=98=BE=E5=8D=A1: 1 * NVIDIA T4 / 1 * 16G</td>
|
||||
<td class=3D"confluenceTd">1</td>
|
||||
<td class=3D"confluenceTd">centos7.4</td>
|
||||
<td class=3D"confluenceTd">10.20.1.132</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">storage</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">=E4=BA=91=E4=B8=BB=E6=9C=BA</td>
|
||||
<td class=3D"confluenceTd">=E9=80=9A=E7=94=A8=E7=8B=AC=E4=BA=AB=E5=9E=8B | =
|
||||
c7n.xlarge.2 | 12vCPUs | 24 GiB|=E7=B3=BB=E7=BB=9F=E7=9B=98 =E9=AB=98IO 60G=
|
||||
|=E6=95=B0=E6=8D=AE=E7=9B=98 =E9=AB=98IO 500G</td>
|
||||
<td class=3D"confluenceTd">1</td>
|
||||
<td class=3D"confluenceTd">openEuler</td>
|
||||
<td class=3D"confluenceTd">10.20.1.133</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E4=BA=91=E4=B8=BB=E6=9C=BA</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E9=80=9A=E7=94=A8=E7=8B=AC=E4=BA=
|
||||
=AB=E5=9E=8B | c7n.xlarge.2 | 12vCPUs | 24 GiB|=E7=B3=BB=E7=BB=9F=E7=9B=98 =
|
||||
=E9=AB=98IO 60G |=E6=95=B0=E6=8D=AE=E7=9B=98 =E9=AB=98IO 500G</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">1</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">openEuler</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">10.20.1.134</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E4=BA=91=E4=B8=BB=E6=9C=BA</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E9=80=9A=E7=94=A8=E7=8B=AC=E4=BA=
|
||||
=AB=E5=9E=8B | c7n.xlarge.2 | 12vCPUs | 24 GiB|=E7=B3=BB=E7=BB=9F=E7=9B=98 =
|
||||
=E9=AB=98IO 40G |=E6=95=B0=E6=8D=AE=E7=9B=98 =E9=AB=98IO 500G</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">1</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">BigCloud Enterprise Linux For Eule=
|
||||
r 21.10 LTS</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">10.20.1.141</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E6=96=B0=E5=A2=9Eworker</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E4=BA=91=E4=B8=BB=E6=9C=BA</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E9=80=9A=E7=94=A8=E7=8B=AC=E4=BA=
|
||||
=AB=E5=9E=8B | c7n.xlarge.2 | 12vCPUs | 24 GiB|=E7=B3=BB=E7=BB=9F=E7=9B=98 =
|
||||
=E9=AB=98IO 40G |=E6=95=B0=E6=8D=AE=E7=9B=98 =E9=AB=98IO 500G</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">1</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">BigCloud Enterprise Linux For Eule=
|
||||
r 21.10 LTS</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">10.20.1.142</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E6=96=B0=E5=A2=9Eworker</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E4=BA=91=E4=B8=BB=E6=9C=BA</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E9=80=9A=E7=94=A8=E7=8B=AC=E4=BA=
|
||||
=AB=E5=9E=8B | c7n.xlarge.2 | 12vCPUs | 24 GiB|=E7=B3=BB=E7=BB=9F=E7=9B=98 =
|
||||
=E9=AB=98IO 40G |=E6=95=B0=E6=8D=AE=E7=9B=98 =E9=AB=98IO 500G</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">1</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">BigCloud Enterprise Linux For Eule=
|
||||
r 21.10 LTS</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">10.20.1.144</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E6=96=B0=E5=A2=9Eworker</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E4=BA=91=E4=B8=BB=E6=9C=BA</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E9=80=9A=E7=94=A8=E7=8B=AC=E4=BA=
|
||||
=AB=E5=9E=8B | c7n.xlarge.2 | 12vCPUs | 24 GiB|=E7=B3=BB=E7=BB=9F=E7=9B=98 =
|
||||
=E9=AB=98IO 40G |=E6=95=B0=E6=8D=AE=E7=9B=98 =E9=AB=98IO 500G</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">1</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">BigCloud Enterprise Linux For Eule=
|
||||
r 21.10 LTS</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">10.20.1.145</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">=E6=96=B0=E5=A2=9Eworker</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">=E5=BC=B9=E6=80=A7=E8=B4=9F=E8=BD=BD=E5=9D=87=E8=
|
||||
=A1=A1</td>
|
||||
<td class=3D"confluenceTd">=E5=85=B1=E4=BA=AB=E5=9E=8B</td>
|
||||
<td class=3D"confluenceTd">1</td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">=E5=BC=B9=E6=80=A7=E5=85=AC=E7=BD=91IP</td>
|
||||
<td class=3D"confluenceTd">100M</td>
|
||||
<td class=3D"confluenceTd">1</td>
|
||||
<td class=3D"confluenceTd">2024 =E5=B7=B2=E5=8D=87=E7=BA=A7</td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<p><br></p>
|
||||
<h3 id=3D"id-=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E8=80=81=E5=B9=B3=E5=8F=
|
||||
=B0-=E6=9C=8D=E5=8A=A1=E5=99=A8=E8=B4=A6=E5=8F=B7=E5=AF=86=E7=A0=81">=E6=9C=
|
||||
=8D=E5=8A=A1=E5=99=A8=E8=B4=A6=E5=8F=B7=E5=AF=86=E7=A0=81</h3>
|
||||
<div class=3D"table-wrap">
|
||||
<table class=3D"wrapped relative-table confluenceTable" style=3D"width: 38.=
|
||||
0274%;">
|
||||
<colgroup>
|
||||
<col style=3D"width: 9.09091%;">
|
||||
<col style=3D"width: 27.2727%;">
|
||||
<col style=3D"width: 21.3564%;">
|
||||
<col style=3D"width: 42.2799%;">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th class=3D"confluenceTh">=E7=94=A8=E6=88=B7=E5=90=8D</th>
|
||||
<th class=3D"confluenceTh">=E5=AF=86=E7=A0=81</th>
|
||||
<th class=3D"confluenceTh"><br></th>
|
||||
<th class=3D"confluenceTh"><br></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd"><p><strong>36.138.132.240</strong></p><p>app</p>=
|
||||
</td>
|
||||
<td class=3D"confluenceTd"><p><s>P@ssw0rd!2024</s></p><p>2025-0325=E6=9B=B4=
|
||||
=E6=94=B9=EF=BC=88=E6=9C=8D=E5=8A=A1=E5=99=A8=E5=88=97=E8=A1=A8=E7=9A=84=E6=
|
||||
=9C=8D=E5=8A=A1=E5=99=A8=EF=BC=8C=E5=AF=86=E7=A0=81=E9=83=BD=E4=B8=80=E8=B5=
|
||||
=B7=E6=94=B9=E4=BA=86=EF=BC=89=E4=B8=BA=EF=BC=9A</p><p>Super.123@ </p>=
|
||||
</td>
|
||||
<td class=3D"confluenceTd">su - root</td>
|
||||
<td class=3D"confluenceTd">=E4=BD=BF=E7=94=A8root=E9=9C=80=E8=A6=81=E6=89=
|
||||
=BE=E5=AF=B9=E6=96=B9=E7=94=B3=E8=AF=B7root=E5=AF=86=E7=A0=81</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">root</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<h3 id=3D"id-=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E8=80=81=E5=B9=B3=E5=8F=
|
||||
=B0-=E7=BD=91=E7=BB=9C=E8=B5=84=E6=BA=90">=E7=BD=91=E7=BB=9C=E8=B5=84=E6=BA=
|
||||
=90</h3>
|
||||
<p>=E7=A7=BB=E5=8A=A8=E4=BA=91=E8=B5=84=E6=BA=90=E5=A6=82=E4=B8=8B=EF=BC=9A=
|
||||
<br>=E5=85=AC=E7=BD=91IP: </p>
|
||||
<p><br></p>
|
||||
<p><strong>36.138.132.240 =EF=BC=88=E7=94=A8=E8=BF=99=E4=B8=AA=E8=BF=9E=E6=
|
||||
=8E=A5 =E6=9C=8D=E5=8A=A1=E5=99=A8ssh=EF=BC=89</strong></p>
|
||||
<p><strong>36.138.132.240</strong></p>
|
||||
<p><strong>36.138.132.240</strong></p>
|
||||
<p><br></p>
|
||||
<p><span>=E5=85=AC=E7=BD=91=E7=AB=AF=E5=8F=A3=E5=A6=82=E4=B8=8B</span></p>
|
||||
<p><br>8081/8443(HTTP)<span>=EF=BC=8C39000(HTTP)=EF=BC=8C31883(TCP)=EF=BC=
|
||||
=8C38083(TCP)=EF=BC=8C31935(TCP)=EF=BC=8C30090=EF=BC=88UDP=EF=BC=89=EF=BC=
|
||||
=8C30080 =EF=BC=88HTTP=EF=BC=89,30554(TCP), 30556(UDP+TCP)=EF=BC=8C38989=EF=
|
||||
=BC=88TCP=EF=BC=89</span></p>
|
||||
<p><br></p>
|
||||
<p>=E6=88=90=E7=A0=94=E8=AE=BF=E9=97=AE=E7=9A=84=E7=99=BD=E5=90=8D=E5=8D=95=
|
||||
IP:<br> 183.220.149.17-183.220.149.24<br> 183.220.1=
|
||||
49.27-183.220.149.30</p>
|
||||
<p><br></p>
|
||||
<p><br></p>
|
||||
<div class=3D"table-wrap">
|
||||
<table class=3D"wrapped confluenceTable">
|
||||
<colgroup>
|
||||
<col>
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th class=3D"confluenceTh">dashboard</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd"><a href=3D"https://36.138.132.240:30554/#/login"=
|
||||
class=3D"external-link" rel=3D"nofollow">https://36.138.132.240:30554/#/lo=
|
||||
gin</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">eyJhbGciOiJSUzI1NiIsImtpZCI6IjlPX3=
|
||||
VXRndkOEVvbHg1OF9pVmlBbmlYUXEzdmEybW9KQ2s0dVl0ZmRxZXMifQ.eyJpc3MiOiJrdWJlcm=
|
||||
5ldGVzL3NlcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc=
|
||||
3BhY2UiOiJrdWJlLXN5c3RlbSIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VjcmV0=
|
||||
Lm5hbWUiOiJhZG1pbi11c2VyLXRva2VuLWRucXc5Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWN=
|
||||
jb3VudC9zZXJ2aWNlLWFjY291bnQubmFtZSI6ImFkbWluLXVzZXIiLCJrdWJlcm5ldGVzLmlvL3=
|
||||
NlcnZpY2VhY2NvdW50L3NlcnZpY2UtYWNjb3VudC51aWQiOiJkYmY2MzM5Ni00MTA5LTQ5MGEtO=
|
||||
WE2MS02ZmQ0YTA1NWNkNDQiLCJzdWIiOiJzeXN0ZW06c2VydmljZWFjY291bnQ6a3ViZS1zeXN0=
|
||||
ZW06YWRtaW4tdXNlciJ9.Ksh_Cd_C_f5IjKA2ZWv9u4JVkHlxM-PhfEdtt6g2NC87SMsidKkkQ3=
|
||||
uSaj4Egnf0dOuRZIsVj67fVrarnsTl5Hy2N8zrgXP1o53YsauALBsqO_ShmdYMHYgFvJ5U_3Ig5=
|
||||
4tRm2nLsDpeai-6gEcoVvmuMm8GneiGiiLJI4BN2n9hbLrwKE5BG6L3TIUd_baGD0Oy0y-BY4JZ=
|
||||
6Lboc3J7fNKgUrcsBc0q5mw_XtW61gInnnPuhlQ2No4PLgKMZK0yq-9j8lfAE9RtfMqvllIyzjZ=
|
||||
0LwlRwD1cHwaVeY-sydl4mGNamGx9YnfpnxeIi5_U67uNIXW893UzH6yRyTqdKw</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class=3D"table-wrap">
|
||||
<table class=3D"wrapped confluenceTable">
|
||||
<colgroup>
|
||||
<col style=3D"width: 63.0px;">
|
||||
<col style=3D"width: 243.0px;">
|
||||
<col style=3D"width: 49.0px;">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th class=3D"confluenceTh">=E9=A1=B9=E7=9B=AE</th>
|
||||
<th class=3D"confluenceTh">=E5=9C=B0=E5=9D=80</th>
|
||||
<th colspan=3D"1" class=3D"confluenceTh">=E8=B4=A6=E5=8F=B7</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">=E4=B8=BB=E9=A1=B5=E9=9D=A2</td>
|
||||
<td class=3D"confluenceTd"><p><a href=3D"https://36.138.132.240:30554/#/log=
|
||||
in" class=3D"external-link" rel=3D"nofollow">http://36.138.132.240:</a>3008=
|
||||
0/pangu/</p><p><br></p><p><br></p><p><a href=3D"https://flight-controljxgnx=
|
||||
.com/pangu/" class=3D"external-link" rel=3D"nofollow">https://flight-contro=
|
||||
ljxgnx.com/pangu/</a></p></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><p> jxydadmin D]2;qaDA8)G^t'M=
|
||||
</p><p><br></p><p><br></p><p><br></p><p>=E7=94=A8=E6=88=B7=E5=90=8D=EF=BC=
|
||||
=9Ajiangxiyidong</p><p>=E5=AF=86=E7=A0=81=EF=BC=9AN28*hQ)[waq22025</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">OMS</td>
|
||||
<td class=3D"confluenceTd"><a href=3D"https://36.138.132.240:30554/#/login"=
|
||||
class=3D"external-link" rel=3D"nofollow">http://36.138.132.240:</a>30080/o=
|
||||
ms/</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><p>admin</p><p>cvi!LRtUWd</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">EMQX</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><span>36.138.132.240 <br>10.=
|
||||
20.1.130 31883</span></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><pre>cmlc<br>odD8#Ve7.B</pre></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">RABBITMQ</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">10.20.1.130 35672</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><pre>admin<br>nYcRN91r._hj</pre></=
|
||||
td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">MINIO</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><span>36.138.132.240 39000</=
|
||||
span></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><pre>cmii<br>B#923fC7mk</pre></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">NACOS</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><a href=3D"http://36.138.132.240:3=
|
||||
8989/nacos/" class=3D"external-link" rel=3D"nofollow">http://36.138.132.240=
|
||||
:38989/nacos/</a><br><a href=3D"http://36.138.132.240:38989/nacos/" class=
|
||||
=3D"external-link" rel=3D"nofollow">http://36.138.132.240:38848/nacos/</a><=
|
||||
/td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><p>developer</p><p>N@cos14Good</p>=
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<h2 id=3D"id-=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E8=80=81=E5=B9=B3=E5=8F=
|
||||
=B0-=E9=83=A8=E7=BD=B2=E8=AF=A6=E6=83=85">=E9=83=A8=E7=BD=B2=E8=AF=A6=E6=83=
|
||||
=85</h2>
|
||||
<h3 id=3D"id-=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E8=80=81=E5=B9=B3=E5=8F=
|
||||
=B0-=E6=9C=8D=E5=8A=A1=E9=83=A8=E5=88=86">=E6=9C=8D=E5=8A=A1=E9=83=A8=E5=88=
|
||||
=86</h3>
|
||||
<ol>
|
||||
<li>=E9=83=A8=E7=BD=B2=E7=89=88=E6=9C=AC 4.1.6</li>
|
||||
<li>=E7=94=B1=E4=BA=8E=E5=85=AC=E7=BD=91=E7=AB=AF=E5=8F=A3=E7=9A=84=E9=97=
|
||||
=AE=E9=A2=98=EF=BC=8C=E9=A1=B5=E9=9D=A2=E7=9A=84=E7=AB=AF=E5=8F=A3=E4=BF=AE=
|
||||
=E6=94=B9=E4=B8=BA30080</li>
|
||||
<li>=E6=B5=8B=E8=AF=95=E8=B4=A6=E5=8F=B7=E4=B8=BA jxydadmin/ JxydAdmin</li>
|
||||
</ol>
|
||||
<h3 id=3D"id-=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E8=80=81=E5=B9=B3=E5=8F=
|
||||
=B0-SRS=E9=83=A8=E5=88=86">SRS=E9=83=A8=E5=88=86</h3>
|
||||
<ol>
|
||||
<li>=E7=94=B1=E4=BA=8E=E5=85=AC=E7=BD=91=E7=AB=AF=E5=8F=A3=E7=9A=84=E9=99=
|
||||
=90=E5=88=B6=EF=BC=8Cwebrtc=E6=8B=89=E6=B5=81=E5=9C=B0=E5=9D=80=E4=BF=AE=E6=
|
||||
=94=B9=E4=B8=BA 30556</li>
|
||||
<li>=E5=AE=9E=E9=99=85webrtc=E7=9A=84=E6=8B=89=E6=B5=81=E6=95=B0=E6=8D=AE=
|
||||
=E4=BC=A0=E8=BE=93=E7=AB=AF=E5=8F=A3=E4=B8=BA30090</li>
|
||||
</ol>
|
||||
<p><br></p>
|
||||
<h3 id=3D"id-=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E8=80=81=E5=B9=B3=E5=8F=
|
||||
=B0-=E9=98=B2=E7=81=AB=E5=A2=99=E4=BF=AE=E5=A4=8D=E5=AE=89=E5=85=A8=E6=BC=
|
||||
=8F=E6=B4=9E">=E9=98=B2=E7=81=AB=E5=A2=99=E4=BF=AE=E5=A4=8D=E5=AE=89=E5=85=
|
||||
=A8=E6=BC=8F=E6=B4=9E</h3>
|
||||
<p>sudo firewall-cmd --list-all </p>
|
||||
<p><br></p>
|
||||
<p># =E5=85=81=E8=AE=B8=E6=89=80=E6=9C=89TCP=E5=92=8CUDP=E6=B5=81=E9=87=8F<=
|
||||
br>sudo firewall-cmd --permanent --add-service=3Dssh<br>sudo firewall-cmd -=
|
||||
-permanent --add-service=3Ddhcpv6-client<br>sudo firewall-cmd --permanent -=
|
||||
-add-service=3Dcockpit<br>sudo firewall-cmd --permanent --add-service=3Dhtt=
|
||||
p<br>sudo firewall-cmd --permanent --add-service=3Dhttps<br>sudo firewall-c=
|
||||
md --reload</p>
|
||||
<p># =E6=B7=BB=E5=8A=A0=E7=89=B9=E5=AE=9A=E8=A7=84=E5=88=99=EF=BC=8C=E5=85=
|
||||
=81=E8=AE=B8=E6=9D=A5=E8=87=AA 10.100.2.0/24 =E7=9A=84TCP 8033=E7=AB=AF=E5=
|
||||
=8F=A3=E8=AE=BF=E9=97=AE<br>sudo firewall-cmd --permanent --add-rich-rule=
|
||||
=3D'rule family=3D"ipv4" source address=3D"10.100.2.0/24" port protocol=3D"=
|
||||
tcp" port=3D"8033" accept'</p>
|
||||
<p>sudo firewall-cmd --permanent --zone=3Dpublic --add-port=3D1-8032/tcp &n=
|
||||
bsp;<br>sudo firewall-cmd --permanent --zone=3Dpublic --add-port=3D8034-655=
|
||||
35/tcp <br>sudo firewall-cmd --permanent --zone=3Dpublic --add-port=
|
||||
=3D1-65535/udp </p>
|
||||
<p>sudo firewall-cmd --permanent --zone=3Dpublic --add-masquerade</p>
|
||||
<p># =E9=87=8D=E5=90=AF=E9=98=B2=E7=81=AB=E5=A2=99<br>sudo firewall-cmd --r=
|
||||
eload</p>
|
||||
<p><br></p>
|
||||
<p><br></p>
|
||||
<div class=3D"simple-translate-system-theme">
|
||||
<div>
|
||||
<div class=3D"simple-translate-button isShow" style=3D"height: 22.0px;width=
|
||||
: 22.0px;">
|
||||
<br>
|
||||
</div>
|
||||
<div class=3D"simple-translate-panel" style=3D"width: 300.0px;height: 200.0=
|
||||
px;font-size: 13.0px;">
|
||||
<div class=3D"simple-translate-result-wrapper">
|
||||
<div class=3D"simple-translate-move">
|
||||
<br>
|
||||
</div>
|
||||
<div class=3D"simple-translate-result-contents">
|
||||
<p class=3D"simple-translate-result"><br></p>
|
||||
<p class=3D"simple-translate-candidate"><br></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class=3D"simple-translate-system-theme">
|
||||
<div>
|
||||
<div class=3D"simple-translate-button" style=3D"height: 22.0px;width: 22.0p=
|
||||
x;">
|
||||
<br>
|
||||
</div>
|
||||
<div class=3D"simple-translate-panel" style=3D"width: 300.0px;height: 200.0=
|
||||
px;font-size: 13.0px;">
|
||||
<div class=3D"simple-translate-result-wrapper">
|
||||
<div class=3D"simple-translate-move">
|
||||
<br>
|
||||
</div>
|
||||
<div class=3D"simple-translate-result-contents">
|
||||
<p class=3D"simple-translate-result"><br></p>
|
||||
<p class=3D"simple-translate-candidate"><br></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class=3D"simple-translate-system-theme">
|
||||
<div>
|
||||
<div class=3D"simple-translate-button isShow" style=3D"height: 22.0px;width=
|
||||
: 22.0px;">
|
||||
<br>
|
||||
</div>
|
||||
<div class=3D"simple-translate-panel" style=3D"width: 300.0px;height: 200.0=
|
||||
px;font-size: 13.0px;">
|
||||
<div class=3D"simple-translate-result-wrapper">
|
||||
<div class=3D"simple-translate-move">
|
||||
<br>
|
||||
</div>
|
||||
<div class=3D"simple-translate-result-contents">
|
||||
<p class=3D"simple-translate-result"><br></p>
|
||||
<p class=3D"simple-translate-candidate"><br></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class=3D"simple-translate-system-theme">
|
||||
<div>
|
||||
<div class=3D"simple-translate-button isShow" style=3D"height: 22.0px;width=
|
||||
: 22.0px;">
|
||||
<br>
|
||||
</div>
|
||||
<div class=3D"simple-translate-panel" style=3D"width: 300.0px;height: 200.0=
|
||||
px;font-size: 13.0px;">
|
||||
<div class=3D"simple-translate-result-wrapper">
|
||||
<div class=3D"simple-translate-move">
|
||||
<br>
|
||||
</div>
|
||||
<div class=3D"simple-translate-result-contents">
|
||||
<p class=3D"simple-translate-result"><br></p>
|
||||
<p class=3D"simple-translate-candidate"><br></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class=3D"simple-translate-system-theme">
|
||||
<div>
|
||||
<div class=3D"simple-translate-button isShow" style=3D"height: 22.0px;width=
|
||||
: 22.0px;">
|
||||
<br>
|
||||
</div>
|
||||
<div class=3D"simple-translate-panel" style=3D"width: 300.0px;height: 200.0=
|
||||
px;font-size: 13.0px;">
|
||||
<div class=3D"simple-translate-result-wrapper">
|
||||
<div class=3D"simple-translate-move">
|
||||
<br>
|
||||
</div>
|
||||
<div class=3D"simple-translate-result-contents">
|
||||
<p class=3D"simple-translate-result"><br></p>
|
||||
<p class=3D"simple-translate-candidate"><br></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
------=_Part_931_1321216193.1781662071468--
|
||||
679
85-20260617-江西环境整理/江西移动二期通感平台.doc
Normal file
679
85-20260617-江西环境整理/江西移动二期通感平台.doc
Normal file
@@ -0,0 +1,679 @@
|
||||
Date: Wed, 17 Jun 2026 10:07:43 +0800 (CST)
|
||||
Message-ID: <1903685522.930.1781662063359@localhost>
|
||||
Subject: Exported From Confluence
|
||||
MIME-Version: 1.0
|
||||
Content-Type: multipart/related;
|
||||
boundary="----=_Part_929_2087856891.1781662063358"
|
||||
|
||||
------=_Part_929_2087856891.1781662063358
|
||||
Content-Type: text/html; charset=UTF-8
|
||||
Content-Transfer-Encoding: quoted-printable
|
||||
Content-Location: file:///C:/exported.html
|
||||
|
||||
<html xmlns:o=3D'urn:schemas-microsoft-com:office:office'
|
||||
xmlns:w=3D'urn:schemas-microsoft-com:office:word'
|
||||
xmlns:v=3D'urn:schemas-microsoft-com:vml'
|
||||
xmlns=3D'urn:w3-org-ns:HTML'>
|
||||
<head>
|
||||
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dutf-8=
|
||||
">
|
||||
<title>=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E4=BA=8C=E6=9C=9F=E9=80=9A=
|
||||
=E6=84=9F=E5=B9=B3=E5=8F=B0</title>
|
||||
<!--[if gte mso 9]>
|
||||
<xml>
|
||||
<o:OfficeDocumentSettings>
|
||||
<o:TargetScreenSize>1024x640</o:TargetScreenSize>
|
||||
<o:PixelsPerInch>72</o:PixelsPerInch>
|
||||
<o:AllowPNG/>
|
||||
</o:OfficeDocumentSettings>
|
||||
<w:WordDocument>
|
||||
<w:View>Print</w:View>
|
||||
<w:Zoom>90</w:Zoom>
|
||||
<w:DoNotOptimizeForBrowser/>
|
||||
</w:WordDocument>
|
||||
</xml>
|
||||
<![endif]-->
|
||||
<style>
|
||||
<!--
|
||||
@page Section1 {
|
||||
size: 8.5in 11.0in;
|
||||
margin: 1.0in;
|
||||
mso-header-margin: .5in;
|
||||
mso-footer-margin: .5in;
|
||||
mso-paper-source: 0;
|
||||
}
|
||||
|
||||
table {
|
||||
border: solid 1px;
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
table td, table th {
|
||||
border: solid 1px;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
td {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
tr {
|
||||
page-break-after: avoid;
|
||||
}
|
||||
|
||||
div.Section1 {
|
||||
page: Section1;
|
||||
}
|
||||
|
||||
/* Confluence print stylesheet. Common to all themes for print medi=
|
||||
a */
|
||||
/* Full of !important until we improve batching for print CSS */
|
||||
|
||||
@media print {
|
||||
#main {
|
||||
padding-bottom: 1em !important; /* The default padding of 6em is to=
|
||||
o much for printouts */
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: Arial, Helvetica, FreeSans, sans-serif;
|
||||
font-size: 10pt;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
body, #full-height-container, #main, #page, #content, .has-personal-sid=
|
||||
ebar #content {
|
||||
background: #fff !important;
|
||||
color: #000 !important;
|
||||
border: 0 !important;
|
||||
width: 100% !important;
|
||||
height: auto !important;
|
||||
min-height: auto !important;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
a, a:link, a:visited, a:focus, a:hover, a:active {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
#content h1,
|
||||
#content h2,
|
||||
#content h3,
|
||||
#content h4,
|
||||
#content h5,
|
||||
#content h6 {
|
||||
font-family: Arial, Helvetica, FreeSans, sans-serif;
|
||||
page-break-after: avoid;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: Monaco, "Courier New", monospace;
|
||||
}
|
||||
|
||||
#header,
|
||||
.aui-header-inner,
|
||||
#navigation,
|
||||
#sidebar,
|
||||
.sidebar,
|
||||
#personal-info-sidebar,
|
||||
.ia-fixed-sidebar,
|
||||
.page-actions,
|
||||
.navmenu,
|
||||
.ajs-menu-bar,
|
||||
.noprint,
|
||||
.inline-control-link,
|
||||
.inline-control-link a,
|
||||
a.show-labels-editor,
|
||||
.global-comment-actions,
|
||||
.comment-actions,
|
||||
.quick-comment-container,
|
||||
#addcomment {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* CONF-28544 cannot print multiple pages in IE */
|
||||
#splitter-content {
|
||||
position: relative !important;
|
||||
}
|
||||
|
||||
.comment .date::before {
|
||||
content: none !important; /* remove middot for print view */
|
||||
}
|
||||
|
||||
h1.pagetitle img {
|
||||
height: auto;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.print-only {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#footer {
|
||||
position: relative !important; /* CONF-17506 Place the footer at en=
|
||||
d of the content */
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: none;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#poweredby {
|
||||
border-top: none;
|
||||
background: none;
|
||||
}
|
||||
|
||||
#poweredby li.print-only {
|
||||
display: list-item;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
#poweredby li.noprint {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* no width controls in print */
|
||||
.wiki-content .table-wrap,
|
||||
.wiki-content p,
|
||||
.panel .codeContent,
|
||||
.panel .codeContent pre,
|
||||
.image-wrap {
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
||||
/* TODO - should this work? */
|
||||
#children-section,
|
||||
#comments-section .comment,
|
||||
#comments-section .comment .comment-body,
|
||||
#comments-section .comment .comment-content,
|
||||
#comments-section .comment p {
|
||||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
#page-children a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/**
|
||||
hide twixies
|
||||
|
||||
the specificity here is a hack because print styles
|
||||
are getting loaded before the base styles. */
|
||||
#comments-section.pageSection .section-header,
|
||||
#comments-section.pageSection .section-title,
|
||||
#children-section.pageSection .section-header,
|
||||
#children-section.pageSection .section-title,
|
||||
.children-show-hide {
|
||||
padding-left: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.children-show-hide.icon {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* personal sidebar */
|
||||
.has-personal-sidebar #content {
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
.has-personal-sidebar #content .pageSection {
|
||||
margin-right: 0px;
|
||||
}
|
||||
|
||||
.no-print, .no-print * {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E4=BA=8C=E6=9C=9F=E9=80=9A=E6=
|
||||
=84=9F=E5=B9=B3=E5=8F=B0</h1>
|
||||
<div class=3D"Section1">
|
||||
<h3 id=3D"id-=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E4=BA=8C=E6=9C=9F=
|
||||
=E9=80=9A=E6=84=9F=E5=B9=B3=E5=8F=B0-=E7=A7=BB=E5=8A=A8=E4=BA=91=E2=80=93=
|
||||
=E6=B5=99=E6=B1=9F">=E7=A7=BB=E5=8A=A8=E4=BA=91=E2=80=93=E6=B5=99=E6=B1=9F<=
|
||||
/h3>
|
||||
<p><br></p>
|
||||
<h3 id=3D"id-=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E4=BA=8C=E6=9C=9F=E9=80=
|
||||
=9A=E6=84=9F=E5=B9=B3=E5=8F=B0-=E7=BD=91=E7=BB=9C=E7=8E=AF=E5=A2=83=E4=BF=
|
||||
=A1=E6=81=AF">=E7=BD=91=E7=BB=9C=E7=8E=AF=E5=A2=83=E4=BF=A1=E6=81=AF</h3>
|
||||
<p>=E5=B7=B2=E6=8C=89=E7=85=A7-=E6=A0=87=E5=87=86=E7=BD=91=E7=BB=9C=E6=9A=
|
||||
=B4=E9=9C=B2=E9=9D=A2=E5=BC=80=E6=94=BE=E7=AB=AF=E5=8F=A3</p>
|
||||
<p><br></p>
|
||||
<p>36.138.111.244:8135<->10.20.1.135:22<br>36.138.111.244:8136=E2=86=
|
||||
=9410.20.1.136:22</p>
|
||||
<p><br></p>
|
||||
<p>=E6=9C=8D=E5=8A=A1=E5=99=A8=E7=94=A8=E6=88=B7=E5=AF=86=E7=A0=81</p>
|
||||
<p>app</p>
|
||||
<p><s>7NsQTTfUB</s></p>
|
||||
<p><s>=E4=B8=8A=E4=B8=80=E4=B8=AA=E5=AF=86=E7=A0=81=EF=BC=9AP@ssw0rd!2024</=
|
||||
s></p>
|
||||
<p><s>2025-03-14=EF=BC=9A=E6=94=B9=E6=88=90=EF=BC=9A</s></p>
|
||||
<p><s>super.123@</s></p>
|
||||
<p>P@ssw0rd!2025</p>
|
||||
<p><span style=3D"color: rgb(0,0,0);">=E9=9C=80=E8=A6=81root=E6=9D=83=E9=99=
|
||||
=90=E4=B8=B4=E6=97=B6=E7=94=B3=E8=AF=B7</span></p>
|
||||
<p><span style=3D"color: rgb(0,0,0);">=E9=9C=80=E8=A6=81root=E6=9D=83=E9=99=
|
||||
=90=E4=B8=B4=E6=97=B6=E7=94=B3=E8=AF=B7</span></p>
|
||||
<p><span style=3D"color: rgb(0,0,0);">=E9=9C=80=E8=A6=81root=E6=9D=83=E9=99=
|
||||
=90=E4=B8=B4=E6=97=B6=E7=94=B3=E8=AF=B7</span></p>
|
||||
<p><br></p>
|
||||
<h3 id=3D"id-=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=A8=E4=BA=8C=E6=9C=9F=E9=80=
|
||||
=9A=E6=84=9F=E5=B9=B3=E5=8F=B0-=E7=A1=AC=E4=BB=B6=E4=BF=A1=E6=81=AF">=E7=A1=
|
||||
=AC=E4=BB=B6=E4=BF=A1=E6=81=AF</h3>
|
||||
<div class=3D"table-wrap">
|
||||
<table class=3D"wrapped confluenceTable">
|
||||
<colgroup>
|
||||
<col>
|
||||
<col>
|
||||
<col>
|
||||
<col>
|
||||
<col>
|
||||
<col>
|
||||
<col>
|
||||
<col>
|
||||
<col>
|
||||
<col>
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">=E4=BA=A7=E5=93=81</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">=E8=A7=84=E6=A0=BC</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">=E6=95=B0=E9=87=8F</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">=E6=93=8D=E4=BD=9C=E7=B3=BB=E7=BB=
|
||||
=9F</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">vpc</td>
|
||||
<td class=3D"confluenceTd">=E5=B9=B3=E9=9D=A2=E4=B8=80</td>
|
||||
<td class=3D"confluenceTd">=E5=B9=B3=E9=9D=A2=E4=BA=8C</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">=E5=85=AC=E7=BD=91IP</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">=E5=A4=87=E6=B3=A8</td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">10.20.1.128/27</td>
|
||||
<td class=3D"confluenceTd">10.32.8.128/27</td>
|
||||
<td class=3D"confluenceTd">=E7=99=BB=E5=BD=95=E7=94=A8=E6=88=B7=E5=90=8D</t=
|
||||
d>
|
||||
</tr>
|
||||
<tr>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">=E4=BA=91=E4=B8=BB=E6=9C=BA</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">=E9=80=9A=E7=94=A8=E5=9E=8B | s6.2=
|
||||
xlarge.2 | 8vCPUs | 16GB |=E7=B3=BB=E7=BB=9F=E7=9B=98 =E9=AB=98IO 50G |=E6=
|
||||
=95=B0=E6=8D=AE=E7=9B=98 =E9=AB=98IO 300G</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">1</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">openEuler</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">vpc-jxzqzt</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">10.20.1.135</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd">10.32.8.135</td>
|
||||
<td class=3D"confluenceTd">36.138.111.244</td>
|
||||
<td rowspan=3D"2" class=3D"confluenceTd"><br></td>
|
||||
<td class=3D"confluenceTd">app</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">=E6=98=A0=E5=B0=8422=E7=AB=AF=E5=8F=A3</td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">=E4=BA=91=E4=B8=BB=E6=9C=BA</td>
|
||||
<td class=3D"confluenceTd">=E9=80=9A=E7=94=A8=E7=8B=AC=E4=BA=AB=E5=9E=8B | =
|
||||
c6.4xlarge.2 | 16vCPUs | 32GB |=E7=B3=BB=E7=BB=9F=E7=9B=98 =E9=AB=98IO 50G =
|
||||
|=E6=95=B0=E6=8D=AE=E7=9B=98 =E9=AB=98IO 200G</td>
|
||||
<td class=3D"confluenceTd">3</td>
|
||||
<td class=3D"confluenceTd">openEuler</td>
|
||||
<td class=3D"confluenceTd">vpc-jxzqzt</td>
|
||||
<td class=3D"confluenceTd">10.20.1.136-138</td>
|
||||
<td class=3D"confluenceTd">10.32.8.136-138</td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">10.20.1.136</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd">worker-1</td>
|
||||
<td colspan=3D"1" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">=E4=BA=91=E4=B8=BB=E6=9C=BA</td>
|
||||
<td class=3D"confluenceTd">=E9=80=9A=E7=94=A8=E5=9E=8B | s6.2xlarge.2 | 8vC=
|
||||
PUs | 16GB |=E7=B3=BB=E7=BB=9F=E7=9B=98 =E9=AB=98IO 50G |=E6=95=B0=E6=8D=AE=
|
||||
=E7=9B=98 =E9=AB=98IO 2000G</td>
|
||||
<td class=3D"confluenceTd">1</td>
|
||||
<td class=3D"confluenceTd">openEuler</td>
|
||||
<td class=3D"confluenceTd">vpc-jxzqzt</td>
|
||||
<td class=3D"confluenceTd">10.20.1.139</td>
|
||||
<td class=3D"confluenceTd">10.32.8.139</td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">GPU=E4=BA=91=E4=B8=BB=E6=9C=BA</td>
|
||||
<td class=3D"confluenceTd">GPU=E5=8A=A0=E9=80=9F=E5=9E=8B | p2s.4xlarge.8 |=
|
||||
16vCPUs | 128GB | GPU=E6=98=BE=E5=8D=A1: 2 * NVIDIA V100-PCIe-32G / 2 * 32=
|
||||
G |=E7=B3=BB=E7=BB=9F=E7=9B=98 =E9=AB=98IO 100G |=E6=95=B0=E6=8D=AE=E7=9B=
|
||||
=98 =E9=AB=98IO 200G</td>
|
||||
<td class=3D"confluenceTd">1</td>
|
||||
<td class=3D"confluenceTd">Ubuntu 18.04</td>
|
||||
<td class=3D"confluenceTd">vpc-jxzqzt</td>
|
||||
<td class=3D"confluenceTd">10.20.1.140</td>
|
||||
<td class=3D"confluenceTd">10.32.8.140</td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class=3D"confluenceTd">=E5=BC=B9=E6=80=A7=E5=85=AC=E7=BD=91IP</td>
|
||||
<td class=3D"confluenceTd">100M</td>
|
||||
<td class=3D"confluenceTd">1</td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td class=3D"confluenceTd"> </td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td class=3D"confluenceTd">36.138.111.244</td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
<td class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<h3 class=3D"auto-cursor-target" id=3D"id-=E6=B1=9F=E8=A5=BF=E7=A7=BB=E5=8A=
|
||||
=A8=E4=BA=8C=E6=9C=9F=E9=80=9A=E6=84=9F=E5=B9=B3=E5=8F=B0-=E4=B8=9A=E5=8A=
|
||||
=A1=E4=BF=A1=E6=81=AF">=E4=B8=9A=E5=8A=A1=E4=BF=A1=E6=81=AF</h3>
|
||||
<p class=3D"auto-cursor-target">dashboard</p>
|
||||
<p class=3D"auto-cursor-target"><a href=3D"https://36.138.111.244:39999/#/l=
|
||||
ogin" class=3D"external-link" rel=3D"nofollow">https://36.138.111.244:39999=
|
||||
/#/login</a></p>
|
||||
<p class=3D"auto-cursor-target">eyJhbGciOiJSUzI1NiIsImtpZCI6IlBJX1J3R3V1UEt=
|
||||
iSGtna0VXMXZCRU1YTUdRRV9pcndyY3J5bEtkQ2wtZWcifQ.eyJpc3MiOiJrdWJlcm5ldGVzL3N=
|
||||
lcnZpY2VhY2NvdW50Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9uYW1lc3BhY2UiOi=
|
||||
JrdWJlLXN5c3RlbSIsImt1YmVybmV0ZXMuaW8vc2VydmljZWFjY291bnQvc2VjcmV0Lm5hbWUiO=
|
||||
iJhZG1pbi11c2VyLXRva2VuLW56NjY0Iiwia3ViZXJuZXRlcy5pby9zZXJ2aWNlYWNjb3VudC9z=
|
||||
ZXJ2aWNlLWFjY291bnQubmFtZSI6ImFkbWluLXVzZXIiLCJrdWJlcm5ldGVzLmlvL3NlcnZpY2V=
|
||||
hY2NvdW50L3NlcnZpY2UtYWNjb3VudC51aWQiOiI1N2FiMDU0MS1hMmY1LTRiNWEtOGE2NC1iND=
|
||||
BlNTQ5NmU5MjUiLCJzdWIiOiJzeXN0ZW06c2VydmljZWFjY291bnQ6a3ViZS1zeXN0ZW06YWRta=
|
||||
W4tdXNlciJ9.kyjJLiRORsm131Ex8YyR-mbl7MeH8VOJhJYtFZpG6CEMzMFDqvQ4NN_oMogA9vE=
|
||||
w3oNQkuvQjdGbEYnwg5xL25ZPpJLvrUrykV5VXlvGhm7LNHYCqHOzlEJ6aNneusXg0-LjMV0LHg=
|
||||
8yisr_qbIne-Ga8ZeVHWGMPp1ro7DCJ8fpLny6cBHF1cX1yqxO_kk67ewsA5G3MKw3PxqQRBD1e=
|
||||
Civb-Xq3F37SdhBsxfES2XQ8YxpSOrcAeZ1VJIp7vz_qZMVHhPrttSa-QtvpVTlDEG7CKlFNyJH=
|
||||
QO9IZCZO2r79HiOmC9AzJpqqO-rORH_wA_n3bM2QY8YEKjyCLl3qyQ</p>
|
||||
<div class=3D"table-wrap">
|
||||
<table class=3D"wrapped confluenceTable">
|
||||
<colgroup>
|
||||
<col style=3D"width: 87.0px;">
|
||||
<col style=3D"width: 240.0px;">
|
||||
<col style=3D"width: 306.0px;">
|
||||
<col style=3D"width: 221.0px;">
|
||||
<col style=3D"width: 49.0px;">
|
||||
<col style=3D"width: 90.0px;">
|
||||
<col style=3D"width: 29.0px;">
|
||||
<col style=3D"width: 29.0px;">
|
||||
</colgroup>
|
||||
<thead>
|
||||
<tr>
|
||||
<th style=3D"text-align: left;" class=3D"confluenceTh"><p>=E6=9C=8D=E5=8A=
|
||||
=A1</p></th>
|
||||
<th style=3D"text-align: left;" class=3D"confluenceTh"><p>=E5=9C=B0=E5=9D=
|
||||
=80</p></th>
|
||||
<th style=3D"text-align: left;" class=3D"confluenceTh"><p>=E8=B4=A6=E5=8F=
|
||||
=B7</p></th>
|
||||
<th style=3D"text-align: left;" class=3D"confluenceTh"><p>=E8=8A=82=E7=82=
|
||||
=B9</p></th>
|
||||
<th style=3D"text-align: left;" class=3D"confluenceTh"><p>=E5=8D=8F=E8=AE=
|
||||
=AE</p></th>
|
||||
<th style=3D"text-align: left;" class=3D"confluenceTh"><p>=E6=9A=B4=E9=9C=
|
||||
=B2=E7=AB=AF=E5=8F=A3</p></th>
|
||||
<th style=3D"text-align: left;" class=3D"confluenceTh"><br></th>
|
||||
<th style=3D"text-align: left;" class=3D"confluenceTh"><br></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd">dashbo=
|
||||
ard</td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><a hre=
|
||||
f=3D"https://36.138.111.244:39999/#/login" class=3D"external-link" rel=3D"n=
|
||||
ofollow">https://36.138.111.244:39999/#/login</a></td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd">platfo=
|
||||
rm</td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><p><a =
|
||||
href=3D"http://36.138.111.244:8088/oms" class=3D"external-link" rel=3D"nofo=
|
||||
llow">http://36.138.111.244:8088/</a>pangu/</p><p><br></p><p>=E9=80=9A=E6=
|
||||
=84=9F=E5=B9=B3=E5=8F=B0=EF=BC=9A</p><p><a href=3D"http://36.138.111.244:80=
|
||||
88/oms" class=3D"external-link" rel=3D"nofollow">http://36.138.111.244:8088=
|
||||
</a><a class=3D"external-link" style=3D"text-decoration: none;" rel=3D"nofo=
|
||||
llow" href=3D"http://10.40.51.5:8088/pangu">/a</a>rmypeople/</p></td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><p><br=
|
||||
></p><p><br></p><p>jxydadmin</p><p><span style=3D"letter-spacing: 0.0px;">E=
|
||||
x-T$t3tr":*!RN</span></p><p><br></p><p><br></p></td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><p><br=
|
||||
></p></td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">oms</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><a href=3D"http://36=
|
||||
.138.111.244:8088/oms" class=3D"external-link" rel=3D"nofollow">36.138.111.=
|
||||
244</a></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><p><span style=3D"co=
|
||||
lor: rgb(23,43,77);">=E8=B6=85=E7=AE=A1=E8=B4=A6=E5=8F=B7</span></p><p><spa=
|
||||
n style=3D"color: rgb(23,43,77);">admin</span></p><pre>cvi!LRtUWd</pre><p><=
|
||||
br></p></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><p><br></p></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd">mysql<=
|
||||
/td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><p><a =
|
||||
href=3D"http://36.138.111.244:8088/oms" class=3D"external-link" rel=3D"nofo=
|
||||
llow">36.138.111.244</a></p><p>33306</p></td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd">root/Q=
|
||||
zfXQhd3bQ k8s_admin/fP#UaH6qQ3)8</td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd">33306<=
|
||||
/td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
<td style=3D"text-align: left;" colspan=3D"1" class=3D"confluenceTd"><br></=
|
||||
td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">redis</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">Mcache@4522</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">minio</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><p><br></p><p><br></=
|
||||
p><p><br></p></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><p><br></p></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">tcp</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">39000</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">nacos</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><a href=3D"http://36=
|
||||
.138.111.244:8088/oms" class=3D"external-link" rel=3D"nofollow">http://36.1=
|
||||
38.111.244:</a>38848/nacos/</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><p>nacos<span> =
|
||||
</span><span style=3D"color: rgb(23,43,77);">KingKong@95461234</span></p><p=
|
||||
><br></p></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">mongo</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><p style=3D"text-ali=
|
||||
gn: left;"><span style=3D"color: rgb(0,0,0);">cmlc</span></p><p style=3D"te=
|
||||
xt-align: left;">REdPza8#oVlt</p></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">emqx</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><p><a href=3D"http:/=
|
||||
/36.138.111.244:8088/oms" class=3D"external-link" rel=3D"nofollow">36.138.1=
|
||||
11.244</a></p><p>31883</p></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><pre><span style=3D"=
|
||||
color: rgb(193,192,192);">cmlc </span></pre><pre><span style=3D"color=
|
||||
: rgb(193,192,192);">odD8#Ve7.B</span></pre></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">http</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">31883</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">harbor</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">admin <pre>V2ry=
|
||||
Str@ngPss<br><br></pre></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">rabbitmq</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><p style=3D"text-ali=
|
||||
gn: left;"><span style=3D"color: rgb(0,51,102);">admin </span></p><p s=
|
||||
tyle=3D"text-align: left;"><span style=3D"color: rgb(0,51,102);">nYcRN91r._=
|
||||
hj</span></p></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">tcp</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">38083</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">srs</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><p><a href=3D"http:/=
|
||||
/36.138.111.244:8088/oms" class=3D"external-link" rel=3D"nofollow">36.138.1=
|
||||
11.244</a></p><p>31935</p></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">udp</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">30090</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">SF=E5=AF=B9=E6=8E=A5=
|
||||
=E4=BD=BF=E7=94=A8</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><p><span style=3D"co=
|
||||
lor: rgb(23,43,77);">=E5=85=AC=E7=BD=91IP=EF=BC=9A 36.138.111.244</span></p=
|
||||
><p><span style=3D"color: rgb(23,43,77);">=E5=86=85=E7=BD=91=E5=B9=B3=E9=9D=
|
||||
=A2=E4=B8=80=EF=BC=9A10.20.1.135<br>=E5=86=85=E7=BD=91=E5=B9=B3=E9=9D=A2=E4=
|
||||
=BA=8C=EF=BC=9A10.32.8.135</span></p><p><span style=3D"color: rgb(23,43,77)=
|
||||
;">=E6=8E=A7=E5=88=B6=E9=9D=A2=EF=BC=88TCP=EF=BC=89=EF=BC=9A31554</span></p=
|
||||
><p><span style=3D"color: rgb(23,43,77);">=E7=94=A8=E6=88=B7=E9=9D=A2=EF=BC=
|
||||
=88UDP=EF=BC=89=EF=BC=9A31556</span></p></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">tcp</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">38080 =E6=92=AD=E6=
|
||||
=94=BE</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">tcp</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd">31935</td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
<td style=3D"text-align: left;" class=3D"confluenceTd"><br></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class=3D"simple-translate-system-theme">
|
||||
<div class=3D"simple-translate-button isShow" style=3D"height: 22.0px;width=
|
||||
: 22.0px;">
|
||||
<br>
|
||||
</div>
|
||||
<div class=3D"simple-translate-panel" style=3D"width: 300.0px;height: 200.0=
|
||||
px;font-size: 13.0px;">
|
||||
<div class=3D"simple-translate-result-wrapper">
|
||||
<div class=3D"simple-translate-move">
|
||||
<br>
|
||||
</div>
|
||||
<div class=3D"simple-translate-result-contents">
|
||||
<p class=3D"simple-translate-result"><br></p>
|
||||
<p class=3D"simple-translate-candidate"><br></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
------=_Part_929_2087856891.1781662063358--
|
||||
@@ -32,7 +32,6 @@ virsh start ubuntu2204-vm
|
||||
|
||||
virsh destroy ubuntu2204-vm
|
||||
|
||||
|
||||
python3 vm_manager.py clone-linux \
|
||||
--template ubuntu2204-vm\
|
||||
--name-prefix ubuntu2204 \
|
||||
|
||||
248
997-项目VPN虚拟机/rmdc-cluster/40-50-rke-cluster.yml
Normal file
248
997-项目VPN虚拟机/rmdc-cluster/40-50-rke-cluster.yml
Normal file
@@ -0,0 +1,248 @@
|
||||
nodes:
|
||||
- address: 192.168.40.50
|
||||
user: root
|
||||
role:
|
||||
- controlplane
|
||||
- etcd
|
||||
- worker
|
||||
internal_address: 192.168.40.50
|
||||
hostname_override: "master-192.168.40.50"
|
||||
labels:
|
||||
ingress-deploy: true
|
||||
uavcloud.env: demo
|
||||
- address: 192.168.40.61
|
||||
user: root
|
||||
role:
|
||||
- worker
|
||||
internal_address: 192.168.40.61
|
||||
hostname_override: "worker-1-192.168.40.61"
|
||||
labels:
|
||||
uavcloud.env: demo
|
||||
- address: 192.168.40.62
|
||||
user: root
|
||||
role:
|
||||
- worker
|
||||
internal_address: 192.168.40.62
|
||||
hostname_override: "worker-2-192.168.40.62"
|
||||
labels:
|
||||
uavcloud.env: demo
|
||||
- address: 192.168.40.63
|
||||
user: root
|
||||
role:
|
||||
- worker
|
||||
internal_address: 192.168.40.63
|
||||
hostname_override: "worker-3-192.168.40.63"
|
||||
labels:
|
||||
uavcloud.env: demo
|
||||
- address: 192.168.40.51
|
||||
user: root
|
||||
role:
|
||||
- worker
|
||||
internal_address: 192.168.40.51
|
||||
hostname_override: "worker-4-192.168.40.51"
|
||||
labels:
|
||||
uavcloud.env: demo
|
||||
|
||||
|
||||
authentication:
|
||||
strategy: x509
|
||||
sans:
|
||||
- "192.168.40.50"
|
||||
|
||||
private_registries:
|
||||
- url: harbor.wdd.io:8033 # 私有镜像库地址
|
||||
user: admin
|
||||
password: "Superboge.123"
|
||||
is_default: true
|
||||
|
||||
##############################################################################
|
||||
|
||||
# 默认值为false,如果设置为true,当发现不支持的Docker版本时,RKE不会报错
|
||||
ignore_docker_version: true
|
||||
|
||||
# Set the name of the Kubernetes cluster
|
||||
cluster_name: rke-cluster
|
||||
|
||||
kubernetes_version: v1.30.14-rancher1-1
|
||||
|
||||
ssh_key_path: /root/.ssh/id_ed25519
|
||||
|
||||
# Enable running cri-dockerd
|
||||
# Up to Kubernetes 1.23, kubelet contained code called dockershim
|
||||
# to support Docker runtime. The replacement is called cri-dockerd
|
||||
# and should be enabled if you want to keep using Docker as your
|
||||
# container runtime
|
||||
# Only available to enable in Kubernetes 1.21 and higher
|
||||
enable_cri_dockerd: true
|
||||
|
||||
services:
|
||||
etcd:
|
||||
backup_config:
|
||||
enabled: false
|
||||
interval_hours: 72
|
||||
retention: 3
|
||||
safe_timestamp: false
|
||||
timeout: 300
|
||||
creation: 12h
|
||||
extra_args:
|
||||
election-timeout: 5000
|
||||
heartbeat-interval: 500
|
||||
cipher-suites: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_256_GCM_SHA384,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA
|
||||
gid: 0
|
||||
retention: 72h
|
||||
snapshot: false
|
||||
uid: 0
|
||||
|
||||
kube-api:
|
||||
# IP range for any services created on Kubernetes
|
||||
# This must match the service_cluster_ip_range in kube-controller
|
||||
service_cluster_ip_range: 10.74.0.0/16
|
||||
# Expose a different port range for NodePort services
|
||||
service_node_port_range: 30000-40000
|
||||
always_pull_images: false
|
||||
pod_security_policy: false
|
||||
# Add additional arguments to the kubernetes API server
|
||||
# This WILL OVERRIDE any existing defaults
|
||||
extra_args:
|
||||
# Enable audit log to stdout
|
||||
audit-log-path: "-"
|
||||
# Increase number of delete workers
|
||||
delete-collection-workers: 3
|
||||
# Set the level of log output to warning-level
|
||||
v: 1
|
||||
kube-controller:
|
||||
# CIDR pool used to assign IP addresses to pods in the cluster
|
||||
cluster_cidr: 10.100.0.0/16
|
||||
# IP range for any services created on Kubernetes
|
||||
# This must match the service_cluster_ip_range in kube-api
|
||||
service_cluster_ip_range: 10.74.0.0/16
|
||||
# Add additional arguments to the kubernetes API server
|
||||
# This WILL OVERRIDE any existing defaults
|
||||
extra_args:
|
||||
# Set the level of log output to debug-level
|
||||
v: 1
|
||||
# Enable RotateKubeletServerCertificate feature gate
|
||||
feature-gates: RotateKubeletServerCertificate=true
|
||||
# Enable TLS Certificates management
|
||||
# https://kubernetes.io/docs/tasks/tls/managing-tls-in-a-cluster/
|
||||
cluster-signing-cert-file: "/etc/kubernetes/ssl/kube-ca.pem"
|
||||
cluster-signing-key-file: "/etc/kubernetes/ssl/kube-ca-key.pem"
|
||||
kubelet:
|
||||
# Base domain for the cluster
|
||||
cluster_domain: cluster.local
|
||||
# IP address for the DNS service endpoint
|
||||
cluster_dns_server: 10.74.0.10
|
||||
# Fail if swap is on
|
||||
fail_swap_on: false
|
||||
# Set max pods to 250 instead of default 110
|
||||
extra_binds:
|
||||
- "/data/minio-pv:/hostStorage" # 不要修改 为minio的pv添加
|
||||
extra_args:
|
||||
max-pods: 122
|
||||
# Optionally define additional volume binds to a service
|
||||
scheduler:
|
||||
extra_args:
|
||||
# Set the level of log output to warning-level
|
||||
v: 0
|
||||
tls-cipher-suites: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,TLS_RSA_WITH_AES_128_GCM_SHA256,TLS_RSA_WITH_AES_256_GCM_SHA384,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_RSA_WITH_AES_256_CBC_SHA
|
||||
kubeproxy:
|
||||
extra_args:
|
||||
# Set the level of log output to warning-level
|
||||
v: 1
|
||||
|
||||
authorization:
|
||||
mode: rbac
|
||||
|
||||
addon_job_timeout: 30
|
||||
|
||||
# Specify network plugin-in (canal, calico, flannel, weave, or none)
|
||||
network:
|
||||
options:
|
||||
flannel_backend_type: vxlan
|
||||
|
||||
plugin: flannel
|
||||
tolerations:
|
||||
- key: "node.kubernetes.io/unreachable"
|
||||
operator: "Exists"
|
||||
effect: "NoExecute"
|
||||
tolerationseconds: 300
|
||||
- key: "node.kubernetes.io/not-ready"
|
||||
operator: "Exists"
|
||||
effect: "NoExecute"
|
||||
tolerationseconds: 300
|
||||
|
||||
# Specify DNS provider (coredns or kube-dns)
|
||||
dns:
|
||||
provider: coredns
|
||||
nodelocal: {}
|
||||
# Available as of v1.1.0
|
||||
update_strategy:
|
||||
strategy: RollingUpdate
|
||||
rollingUpdate:
|
||||
maxUnavailable: 20%
|
||||
maxSurge: 15%
|
||||
linear_autoscaler_params:
|
||||
cores_per_replica: 0.34
|
||||
nodes_per_replica: 4
|
||||
prevent_single_point_failure: true
|
||||
min: 2
|
||||
max: 3
|
||||
tolerations:
|
||||
- key: "node.kubernetes.io/unreachable"
|
||||
operator: "Exists"
|
||||
effect: "NoExecute"
|
||||
tolerationseconds: 300
|
||||
- key: "node.kubernetes.io/not-ready"
|
||||
operator: "Exists"
|
||||
effect: "NoExecute"
|
||||
tolerationseconds: 300
|
||||
|
||||
# Specify monitoring provider (metrics-server)
|
||||
monitoring:
|
||||
provider: metrics-server
|
||||
# Available as of v1.1.0
|
||||
update_strategy:
|
||||
strategy: RollingUpdate
|
||||
rollingUpdate:
|
||||
maxUnavailable: 8
|
||||
|
||||
ingress:
|
||||
provider: nginx
|
||||
default_backend: true
|
||||
http_port: 30500
|
||||
https_port: 31500
|
||||
extra_envs:
|
||||
- name: TZ
|
||||
value: Asia/Shanghai
|
||||
node_selector:
|
||||
ingress-deploy: true
|
||||
options:
|
||||
use-forwarded-headers: "true"
|
||||
access-log-path: /var/log/nginx/access.log
|
||||
# client-body-timeout: '6000'
|
||||
# compute-full-forwarded-for: 'true'
|
||||
# enable-underscores-in-headers: 'true'
|
||||
# log-format-escape-json: 'true'
|
||||
# log-format-upstream: >-
|
||||
# { "msec": "$msec", "connection": "$connection", "connection_requests":
|
||||
# "$connection_requests", "pid": "$pid", "request_id": "$request_id",
|
||||
# "request_length": "$request_length", "remote_addr": "$remote_addr",
|
||||
# "remote_user": "$remote_user", "remote_port": "$remote_port",
|
||||
# "http_x_forwarded_for": "$http_x_forwarded_for", "time_local":
|
||||
# "$time_local", "time_iso8601": "$time_iso8601", "request": "$request",
|
||||
# "request_uri": "$request_uri", "args": "$args", "status": "$status",
|
||||
# "body_bytes_sent": "$body_bytes_sent", "bytes_sent": "$bytes_sent",
|
||||
# "http_referer": "$http_referer", "http_user_agent": "$http_user_agent",
|
||||
# "http_host": "$http_host", "server_name": "$server_name", "request_time":
|
||||
# "$request_time", "upstream": "$upstream_addr", "upstream_connect_time":
|
||||
# "$upstream_connect_time", "upstream_header_time": "$upstream_header_time",
|
||||
# "upstream_response_time": "$upstream_response_time",
|
||||
# "upstream_response_length": "$upstream_response_length",
|
||||
# "upstream_cache_status": "$upstream_cache_status", "ssl_protocol":
|
||||
# "$ssl_protocol", "ssl_cipher": "$ssl_cipher", "scheme": "$scheme",
|
||||
# "request_method": "$request_method", "server_protocol": "$server_protocol",
|
||||
# "pipe": "$pipe", "gzip_ratio": "$gzip_ratio", "http_cf_ray": "$http_cf_ray",
|
||||
# "geoip_country_code": "$geoip_country_code" }
|
||||
# proxy-body-size: 5120m
|
||||
# proxy-read-timeout: '6000'
|
||||
# proxy-send-timeout: '6000'
|
||||
9
997-项目VPN虚拟机/rmdc-cluster/rmdc-cluster-bootstrap.json
Normal file
9
997-项目VPN虚拟机/rmdc-cluster/rmdc-cluster-bootstrap.json
Normal file
File diff suppressed because one or more lines are too long
@@ -8,9 +8,10 @@ chmod +x /usr/local/bin/jq
|
||||
|
||||
|
||||
|
||||
export name_space_list=(bj-sh-uas-260511)
|
||||
|
||||
export name_space_list=(kube-system kubernetes-dashboard ingress-nginx bj-sh-uas-260511)
|
||||
|
||||
export name_space_list=(bj-sh-uas-260511)
|
||||
for name_space in ${name_space_list[*]};do
|
||||
|
||||
kubectl delete pods -n $name_space --field-selector status.phase!=Running --force
|
||||
|
||||
@@ -22,6 +22,10 @@ db-operator import-structure \
|
||||
--input ./1node_table_init_v2.3.sql
|
||||
|
||||
|
||||
kubectl exec -i helm-mysql-0 -n bj-sh-uas-260511 -c mysql -- \
|
||||
mysql -uk8s_admin -p'fP#UaH6qQ3)8' -h192.168.3.31 -P33306 \
|
||||
< 2.3.4-b-upgrade.sql
|
||||
|
||||
kubectl exec -i helm-mysql-0 -n bj-sh-uas-260511 -c mysql -- \
|
||||
mysql -uroot -hdoris-cluster-fe-internal -P9030 \
|
||||
< 1node_table_init_v2.3.sql
|
||||
|
||||
@@ -3,7 +3,7 @@ kind: ConfigMap
|
||||
apiVersion: v1
|
||||
metadata:
|
||||
name: nginx-cm
|
||||
namespace: bj-sh-uas-260511
|
||||
namespace: 命名空间
|
||||
labels:
|
||||
cmii.type: frontend
|
||||
data:
|
||||
|
||||
@@ -121,12 +121,12 @@ spec:
|
||||
initialDelaySeconds: 60
|
||||
periodSeconds: 20
|
||||
successThreshold: 1
|
||||
timeoutSeconds: 5
|
||||
name: cmii-uas-gateway
|
||||
timeoutSeconds: 5 name: cmii-uas-gateway
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
name: pod-port
|
||||
protocol: TCP
|
||||
|
||||
readinessProbe:
|
||||
failureThreshold: 3
|
||||
httpGet:
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
|
||||
wget https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-platform-lite-oms=2.1.0-20260409-5-noicp=2026-04-09=598.tar.gz
|
||||
wget https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-platform-lite=2.1.0-2026041401-noicp=2026-04-14=857.tar.gz
|
||||
wget https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-sky-converge=2.1-demo-260414=2026-04-14=350.tar.gz
|
||||
wget https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-fly-center=2.1-demo-260409=2026-04-09=227.tar.gz
|
||||
wget https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-sky-integration=2.1.0-demo-260409=2026-04-09=937.tar.gz
|
||||
wget https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-platform-lite-pilot2=2.1-demo-260409=2026-04-09=979.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-platform-lite-oms=2.1.0-20260409-5-noicp=2026-04-09=598.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-platform-lite=2.1.0-2026041401-noicp=2026-04-14=857.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-sky-converge=2.1-demo-260414=2026-04-14=350.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-fly-center=2.1-demo-260409=2026-04-09=227.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-sky-integration=2.1.0-demo-260409=2026-04-09=937.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-platform-lite-pilot2=2.1-demo-260409=2026-04-09=979.tar.gz
|
||||
|
||||
wget https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-ai-core=2.0.0-20260420=2026-04-20=897.tar.gz
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation/tmp/cmii-uav-ai-core=2.0.0-20260420=2026-04-20=897.tar.gz
|
||||
13
999-部署模板/中间件版本-260615.txt
Normal file
13
999-部署模板/中间件版本-260615.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
redis:6.2.14-debian-11-r19
|
||||
redis:7.4.3-debian-12-r0
|
||||
mysql:8.1.0-debian-11-r42
|
||||
os-shell:12-debian-12-r51
|
||||
rabbitmq:3.13.7-debian-12-r5
|
||||
srs:v5.0.195
|
||||
emqx:5.8.8
|
||||
influxdb:2.7.11-debian-12-r19
|
||||
minio/minio:RELEASE.2023-06-02T23-17-26Z
|
||||
kubernetesui/dashboard:v2.7.0
|
||||
kubernetesui/metrics-scraper:v1.0.9
|
||||
nfs-subdir-external-provisioner:v4.0.2
|
||||
nginx:1.28.2
|
||||
@@ -125,3 +125,6 @@ SuperB@ge.123
|
||||
kubectl port-forward -n kube-system \
|
||||
--address 0.0.0.0 \
|
||||
service/kubernetes-dashboard 39999:443
|
||||
|
||||
|
||||
https://oss.demo.uavcmlc.com/cmlc-installation
|
||||
Reference in New Issue
Block a user