Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cicdhtj
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xujian
cicdhtj
Commits
59b9d254
Commit
59b9d254
authored
Feb 18, 2025
by
xujian
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/HTJ-2.04.001-滚动索引' into feature/htj-v2.04.001
# Conflicts: # Jenkinsfile # project.yaml
parents
512c8778
3a2bd7a4
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
146 additions
and
136 deletions
+146
-136
Jenkinsfile
+6
-4
core-charts/templates/service.yaml
+3
-3
core-charts/values.yaml
+8
-2
htj-charts/values.yaml
+1
-0
project.yaml
+125
-124
qrcode-web/templates/configmap.yaml
+3
-3
No files found.
Jenkinsfile
View file @
59b9d254
...
...
@@ -24,6 +24,7 @@ pipeline {
gitParameter
branchFilter:
'origin/(.*)'
,
defaultValue:
defaultBranch
,
name:
'CORE'
,
type:
'PT_BRANCH_TAG'
,
useRepository:
'.*factory-tobacco-qrcodecore.git'
// 后端
gitParameter
branchFilter:
'origin/(.*)'
,
defaultValue:
defaultBranch
,
name:
'HTJ'
,
type:
'PT_BRANCH_TAG'
,
useRepository:
'.*factory-tobacco-qrcode-htj.git'
// 后端
gitParameter
branchFilter:
'origin/(.*)'
,
defaultValue:
defaultBranch
,
name:
'WEB'
,
type:
'PT_BRANCH_TAG'
,
useRepository:
'.*factory-tobacco-qrcode-htj-vue.git'
// 后端
booleanParam
(
name:
'DEPLOY'
,
defaultValue:
false
,
description:
'是否部署'
)
// 布尔值
}
tools
{
...
...
@@ -114,7 +115,7 @@ pipeline {
script
{
for
(
repo
in
repos
)
{
dir
(
repo
.
dir
)
{
if
(
repo
.
isUpdate
&&
repo
.
type
==
'mvn'
)
sh
"mvn -Dmaven.test.failure.ignore=true -s /var/lib/jenkins/settings-itimQR.xml package install"
if
(
repo
.
isUpdate
&&
repo
.
type
==
'mvn'
)
sh
"mvn -Dmaven.test.failure.ignore=true -s /var/lib/jenkins/settings-itimQR.xml
clean
package install"
else
if
(
repo
.
isUpdate
&&
repo
.
type
==
'node'
)
sh
"npm install --registry=https://registry.npmmirror.com && npm run build:prod-htj"
else
echo
"xxx"
}
...
...
@@ -128,7 +129,7 @@ pipeline {
sh
"export DOCKER_HOST=192.168.31.250"
for
(
module
in
modules
)
{
if
(
module
.
isUpdate
&&
module
.
isEncryption
){
sh
"cd ${module.dir}/${module.path} && mvn -Dmaven.test.failure.ignore=true -s /var/lib/jenkins/settings-itimQR.xml package install"
sh
"cd ${module.dir}/${module.path} && mvn -Dmaven.test.failure.ignore=true -s /var/lib/jenkins/settings-itimQR.xml
clean
package install"
sh
"cd ${module.dir}/${module.path} && mvn -Dmaven.test.failure.ignore=true -s /var/lib/jenkins/settings-itimQR.xml classfinal:classFinal"
sh
"docker build -f Docker/encryption/Dockerfile -t ${push_path}/${module.name}:${module.version} --build-arg FILE_NAME=${module.dir}/${module.path}/target/*-encrypted.jar ${workspace}"
sh
"echo Qrcode@2022 | docker login https://192.168.31.201 --username admin --password-stdin"
...
...
@@ -137,7 +138,7 @@ pipeline {
}
if
(
module
.
isUpdate
&&
!
module
.
isEncryption
)
{
sh
"cd ${module.dir}/${module.path} && mvn -Dmaven.test.failure.ignore=true -s /var/lib/jenkins/settings-itimQR.xml package install"
sh
"cd ${module.dir}/${module.path} && mvn -Dmaven.test.failure.ignore=true -s /var/lib/jenkins/settings-itimQR.xml
clean
package install"
sh
"docker build -f Docker/noencryption/Dockerfile -t ${push_path}/${module.name}:${module.version} --build-arg FILE_NAME=${module.dir}/${module.path}/target/*.jar ${workspace}"
sh
"echo Qrcode@2022 | docker login https://192.168.31.201 --username admin --password-stdin"
sh
"docker push ${push_path}/${module.name}:${module.version}"
...
...
@@ -170,12 +171,13 @@ pipeline {
stage
(
'步骤五: 服务部署'
){
when
{
expression
{
return
params
.
DEPLOY
}
}
steps
{
withCredentials
([
file
(
credentialsId:
'00789dc5-a86e-427d-9a57-f5d02a52cb6e'
,
variable:
'KUBECONFIG_FILE'
)])
{
script
{
for
(
repo
in
repos
){
echo
"xxx"
if
(
repo
.
dir
==
"BASE"
)
sh
"KUBECONFIG=\$KUBECONFIG_FILE helm upgrade base base-charts/ -n base -f project.yaml"
//
if( repo.dir == "BASE") sh "KUBECONFIG=\$KUBECONFIG_FILE helm upgrade base base-charts/ -n base -f project.yaml"
if
(
repo
.
dir
==
"CORE"
)
sh
"KUBECONFIG=\$KUBECONFIG_FILE helm upgrade core core-charts/ -n core -f project.yaml"
if
(
repo
.
dir
==
"HTJ"
)
sh
"KUBECONFIG=\$KUBECONFIG_FILE helm upgrade htj htj-charts/ -n htj -f project.yaml"
if
(
repo
.
dir
==
"WEB"
)
sh
"KUBECONFIG=\$KUBECONFIG_FILE helm upgrade web qrcode-web/ -n dz-qrcode-web -f project.yaml"
...
...
bas
e-charts/templates/service.yaml
→
cor
e-charts/templates/service.yaml
View file @
59b9d254
...
...
@@ -10,8 +10,8 @@ spec:
-
name
:
gateway
port
:
{{
.Values.service.port
}}
protocol
:
TCP
targetPort
:
{{
.Values.service.p
ort
}}
nodePort
:
{{
.Values.service.nodeP
ort
}}
selector
:
app
:
{{
.Values.service.select
}}
-deployment
sessionAffinity
:
None
type
:
ClusterIP
\ No newline at end of file
type
:
NodePort
\ No newline at end of file
core-charts/values.yaml
View file @
59b9d254
...
...
@@ -40,4 +40,11 @@ core:
version
:
v24.09.20
isUpdate
:
false
isEncryption
:
false
path
:
factory-tobacco-qrcode-modules-timesync
\ No newline at end of file
path
:
factory-tobacco-qrcode-modules-timesync
service
:
name
:
gateway
port
:
8080
select
:
factory-tobacco-qrcode-gateway
nodePort
:
30080
htj-charts/values.yaml
View file @
59b9d254
...
...
@@ -4,6 +4,7 @@ tag: v24.09.20
PARAMS
:
"
--spring.cloud.nacos.discovery.namespace=qrcode-pcb
--spring.cloud.nacos.config.namespace=qrcode-pcb
--spring.cloud.nacos.discovery.server-addr=nacos.dz-middleware.svc.cluster.local
--spring.cloud.nacos.config.server-addr=nacos.dz-middleware.svc.cluster.local"
registry
:
192.168.31.201/develop
htj
:
name
:
"
HTJ"
type
:
"
mvn"
...
...
project.yaml
View file @
59b9d254
...
...
@@ -4,10 +4,11 @@ pushPath: 192.168.31.201/htj_develop
service
:
name
:
gateway
port
:
8080
select
:
qrcode-gateway
nodePort
:
30080
select
:
factory-tobacco-qrcode-gateway
## 基础模块
version
:
v24.
10.31
# 如果项目base.isUpdate:
true / core.isUpdate: true / htj.isUpdate: tru
e 构建整个项目
version
:
v24.
09.26
# 如果项目base.isUpdate:
false / core.isUpdate: false / htj.isUpdate: fals
e 构建整个项目
# 如果模块为true指定项目打包
base
:
dir
:
"
BASE"
...
...
@@ -15,30 +16,6 @@ base:
url
:
"
http://114.116.202.8:18808/factory-tobacco/factory-tobacco-basic.git"
namespace
:
qrcode-xxx
isUpdate
:
true
module
:
-
name
:
qrcode-auth
path
:
factory-tobacco-qrcode-auth
isEncryption
:
false
version
:
v24.11.12
isUpdate
:
true
-
name
:
qrcode-gateway
path
:
factory-tobacco-qrcode-gateway
isEncryption
:
false
version
:
v24.11.12
isUpdate
:
true
-
name
:
qrcode-file
path
:
factory-tobacco-qrcode-modules-file
isEncryption
:
false
version
:
v24.10.31
isUpdate
:
false
-
name
:
qrcode-gen
path
:
factory-tobacco-qrcode-modules-gen
isEncryption
:
false
version
:
v24.10.31
isUpdate
:
false
core
:
dir
:
"
CORE"
...
...
@@ -47,41 +24,65 @@ core:
namespace
:
qrcode-xxx
isUpdate
:
true
module
:
-
name
:
qrcode-data-migrate
path
:
factory-tobacco-qrcode-modules-data-migrate
isEncryption
:
false
version
:
v24.11.12
isUpdate
:
true
-
name
:
qrcode-device
path
:
factory-tobacco-qrcode-modules-device
isEncryption
:
false
version
:
v24.11.12
isUpdate
:
true
-
name
:
qrcode-monitor-alarm
path
:
factory-tobacco-qrcode-modules-monitor-alarm
isEncryption
:
false
version
:
v24.11.12
isUpdate
:
true
-
name
:
qrcode-stmb-register
path
:
factory-tobacco-qrcode-modules-stmb-register
isEncryption
:
false
version
:
v24.11.12
isUpdate
:
true
-
name
:
qrcode-system
path
:
factory-tobacco-qrcode-modules-system
isEncryption
:
false
version
:
v24.11.12
isUpdate
:
true
-
name
:
qrcode-timesync
path
:
factory-tobacco-qrcode-modules-timesync
isEncryption
:
false
version
:
v24.10.31
isUpdate
:
false
-
name
:
factory-tobacco-qrcode-auth
path
:
factory-tobacco-qrcode-auth
isEncryption
:
false
version
:
v25.02.13-2.04.001-index-cs
isUpdate
:
false
-
name
:
factory-tobacco-qrcode-gateway
path
:
factory-tobacco-qrcode-gateway
isEncryption
:
false
version
:
v25.02.13-2.04.001-index-cs
isUpdate
:
false
-
name
:
factory-tobacco-qrcode-modules-data-migrate
path
:
factory-tobacco-qrcode-modules-data-migrate
isEncryption
:
false
version
:
v25.02.14.005-2.04.001-index-cs
isUpdate
:
false
-
name
:
factory-tobacco-qrcode-modules-device
path
:
factory-tobacco-qrcode-modules-device
isEncryption
:
false
version
:
v25.02.13-2.04.001-index-cs
isUpdate
:
false
-
name
:
factory-tobacco-qrcode-modules-file
path
:
factory-tobacco-qrcode-modules-file
isEncryption
:
false
version
:
v25.02.13-2.04.001-index-cs
isUpdate
:
false
#
# - name: factory-tobacco-qrcode-modules-gen
# path: factory-tobacco-qrcode-modules-gen
# isEncryption: false
# version: v24.12.03.1-2.03.003-cs
# isUpdate: false
-
name
:
factory-tobacco-qrcode-modules-monitor-alarm
path
:
factory-tobacco-qrcode-modules-monitor-alarm
isEncryption
:
false
version
:
v25.02.13-2.04.001-index-cs
isUpdate
:
false
-
name
:
factory-tobacco-qrcode-modules-stmb-register
path
:
factory-tobacco-qrcode-modules-stmb-register
isEncryption
:
false
version
:
v25.02.13-2.04.001-index-cs
isUpdate
:
false
-
name
:
factory-tobacco-qrcode-modules-system
path
:
factory-tobacco-qrcode-modules-system
isEncryption
:
false
version
:
v25.02.13-2.04.001-index-cs
isUpdate
:
false
-
name
:
factory-tobacco-qrcode-modules-timesync
path
:
factory-tobacco-qrcode-modules-timesync
isEncryption
:
false
version
:
v25.02.13-2.04.001-index-cs
isUpdate
:
false
htj
:
dir
:
"
HTJ"
...
...
@@ -90,71 +91,71 @@ htj:
namespace
:
qrcode-xxx
isUpdate
:
true
module
:
-
name
:
qrcod
e-monitoring-platform
path
:
factory-tobacco-qrcode-module-monitoring-platform
isEncryption
:
false
version
:
v24.11.12
isUpdate
:
true
-
name
:
qrcod
e-product-syncmes
path
:
factory-tobacco-qrcode-module-product-syncmes
isEncryption
:
false
version
:
v24.10.31
isUpdate
:
fals
e
-
name
:
qrcode
-db-version-control
path
:
factory-tobacco-qrcode-modules-db-version-control
isEncryption
:
false
version
:
v24.10.32
isUpdate
:
tru
e
-
name
:
qrcode
-iotege-relation
path
:
factory-tobacco-qrcode-modules-iotege-relation
isEncryption
:
false
version
:
v24.10.31
isUpdate
:
false
-
name
:
qrcode
-product-bloomfilter
path
:
factory-tobacco-qrcode-modules-product-bloomfilter
isEncryption
:
false
version
:
v24.10.31
isUpdate
:
false
-
name
:
qrcode
-product-relation
path
:
factory-tobacco-qrcode-modules-product-relation
isEncryption
:
false
version
:
v24.11.12
isUpdate
:
true
-
name
:
qrcode
-product-report
path
:
factory-tobacco-qrcode-modules-product-report
isEncryption
:
false
version
:
v24.11.12
isUpdate
:
tru
e
-
name
:
qrcode
-product-statistics
path
:
factory-tobacco-qrcode-modules-product-statistics
isEncryption
:
false
version
:
v24.10.31
isUpdate
:
fals
e
-
name
:
qrcode
-product-upload
path
:
factory-tobacco-qrcode-modules-product-upload
isEncryption
:
true
version
:
v24.11.12
isUpdate
:
true
-
name
:
qrcode
-wip-relation
path
:
factory-tobacco-qrcode-modules-wip-relation
isEncryption
:
false
version
:
v24.10.31
isUpdate
:
false
-
name
:
factory-tobacco-qrcode-modul
e-monitoring-platform
path
:
factory-tobacco-qrcode-module-monitoring-platform
isEncryption
:
false
version
:
v25.02.18-2.04.001-index-cs
isUpdate
:
true
-
name
:
factory-tobacco-qrcode-modul
e-product-syncmes
path
:
factory-tobacco-qrcode-module-product-syncmes
isEncryption
:
false
version
:
v25.02.18-2.04.001-index-cs
isUpdate
:
tru
e
-
name
:
factory-tobacco-qrcode-modules
-db-version-control
path
:
factory-tobacco-qrcode-modules-db-version-control
isEncryption
:
false
version
:
v25.02.13-2.04.001-index-cs
isUpdate
:
fals
e
-
name
:
factory-tobacco-qrcode-modules
-iotege-relation
path
:
factory-tobacco-qrcode-modules-iotege-relation
isEncryption
:
false
version
:
v25.02.13-2.04.001-index-cs
isUpdate
:
false
# - name: factory-tobacco-qrcode-modules
-product-bloomfilter
#
path: factory-tobacco-qrcode-modules-product-bloomfilter
#
isEncryption: false
# version: v25.02.13-2.04.001-index-cs
#
isUpdate: false
-
name
:
factory-tobacco-qrcode-modules
-product-relation
path
:
factory-tobacco-qrcode-modules-product-relation
isEncryption
:
false
version
:
v25.02.18-2.04.001-index-cs
isUpdate
:
true
-
name
:
factory-tobacco-qrcode-modules
-product-report
path
:
factory-tobacco-qrcode-modules-product-report
isEncryption
:
false
version
:
v25.02.13-2.04.001-index-cs
isUpdate
:
fals
e
-
name
:
factory-tobacco-qrcode-modules
-product-statistics
path
:
factory-tobacco-qrcode-modules-product-statistics
isEncryption
:
false
version
:
v25.02.18-2.04.001-index-cs
isUpdate
:
tru
e
-
name
:
factory-tobacco-qrcode-modules
-product-upload
path
:
factory-tobacco-qrcode-modules-product-upload
isEncryption
:
true
version
:
v25.02.18-2.04.001-index-cs
isUpdate
:
true
-
name
:
factory-tobacco-qrcode-modules
-wip-relation
path
:
factory-tobacco-qrcode-modules-wip-relation
isEncryption
:
false
version
:
v25.02.13-2.04.001-index-cs
isUpdate
:
false
web
:
dir
:
"
WEB"
name
:
"
qrcode-web"
type
:
"
node"
url
:
"
http://114.116.202.8:18808/factory-tobacco/factory-tobacco-qrcode-htj-vue.git"
# isEncryption: false
version
:
v2
4.11.04-2.03.002-kf
isUpdate
:
tru
e
# isEncryption: false
version
:
v2
5.02.13-2.04.001-index-cs
isUpdate
:
fals
e
qrcode-web/templates/configmap.yaml
View file @
59b9d254
...
...
@@ -22,7 +22,7 @@ data:
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://gateway.
bas
e.svc.cluster.local:8080/;
proxy_pass http://gateway.
cor
e.svc.cluster.local:8080/;
}
# 子系统访问厂级
...
...
@@ -31,7 +31,7 @@ data:
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://gateway.
bas
e.svc.cluster.local:8080/;
proxy_pass http://gateway.
cor
e.svc.cluster.local:8080/;
}
# 调控到边侧
...
...
@@ -40,7 +40,7 @@ data:
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://gateway.
bas
e.svc.cluster.local:8080/;
proxy_pass http://gateway.
cor
e.svc.cluster.local:8080/;
client_max_body_size 20m;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment