3 Commits

Author SHA1 Message Date
2b9ec9e2be 修复deployment中的nodeport无效问题
All checks were successful
Build Push and Deploy Image / build (push) Successful in 20m39s
2026-01-06 00:27:07 +08:00
bamanker
3352d7efc1 修改deployment文件中namespace属性
Some checks failed
Build Push and Deploy Image / build (push) Failing after 21m34s
2026-01-05 23:40:42 +08:00
bamanker
1118fa6b26 用jackson替换fastjson 2026-01-05 22:58:10 +08:00
3 changed files with 37 additions and 3 deletions

33
.gitignore vendored Normal file
View File

@@ -0,0 +1,33 @@
HELP.md
target/
.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/
### VS Code ###
.vscode/

1
.idea/.gitignore generated vendored
View File

@@ -8,3 +8,4 @@
/dataSources.local.xml /dataSources.local.xml
# 基于编辑器的 HTTP 客户端请求 # 基于编辑器的 HTTP 客户端请求
/httpRequests/ /httpRequests/
/.idea/

View File

@@ -5,7 +5,7 @@ metadata:
app: $APP_NAME app: $APP_NAME
version: $APP_TAG version: $APP_TAG
name: $APP_NAME name: $APP_NAME
namespace: dl-proj #一定要写名称空间 namespace: default #一定要写名称空间
spec: spec:
progressDeadlineSeconds: 600 progressDeadlineSeconds: 600
replicas: 1 replicas: 1
@@ -57,7 +57,7 @@ metadata:
labels: labels:
app: $APP_NAME app: $APP_NAME
name: $APP_NAME name: $APP_NAME
namespace: dl-proj namespace: default
spec: spec:
type: NodePort type: NodePort
externalTrafficPolicy: Local externalTrafficPolicy: Local
@@ -65,6 +65,6 @@ spec:
- name: http - name: http
protocol: TCP protocol: TCP
port: 13145 port: 13145
nodePort: 13145 nodePort: 30045
selector: selector:
app: $APP_NAME app: $APP_NAME