tmerclub-doc/devops指南/tmerclub-release.yaml

1904 lines
47 KiB
YAML
Raw Normal View History

2025-03-19 15:04:57 +08:00
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-auth
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-auth
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-auth
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-auth
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-auth
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-auth
image: '192.168.1.11:80/tmerclub-release/tmerclub-auth:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-auth
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-auth/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-biz
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-biz
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-biz
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-biz
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-biz
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-biz
image: '192.168.1.11:80/tmerclub-release/tmerclub-biz:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-biz
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-biz/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-marketing
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-marketing
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-marketing
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-marketing
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-marketing
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-marketing
image: '192.168.1.11:80/tmerclub-release/tmerclub-marketing:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-marketing
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-marketing/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-flow
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-flow
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-flow
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-flow
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-flow
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-flow
image: '192.168.1.11:80/tmerclub-release/tmerclub-flow:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-flow
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-flow/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-gateway
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
k8s.kuboard.cn/layer: gateway
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-gateway
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-gateway
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-gateway
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-gateway
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-gateway
image: '192.168.1.11:80/tmerclub-release/tmerclub-gateway:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-gateway
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-gateway/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /actuator/health/liveness
port: 8000
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /actuator/health/readiness
port: 8000
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-group
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-group
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-group
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-group
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-group
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-group
image: '192.168.1.11:80/tmerclub-release/tmerclub-group:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-group
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-group/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-h5
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
k8s.kuboard.cn/layer: web
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-h5
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-h5
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-h5
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-13T11:58:12+08:00'
spec:
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-h5
image: '192.168.1.11:80/tmerclub-release/tmerclub-h5:0'
2025-03-19 15:04:57 +08:00
resources: {}
livenessProbe:
httpGet:
path: /
port: 80
scheme: HTTP
initialDelaySeconds: 3
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /
port: 80
scheme: HTTP
initialDelaySeconds: 3
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-im
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-im
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-im
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-im
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-im
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-im
image: '192.168.1.11:80/tmerclub-release/tmerclub-im:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-im
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-im/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-multishop-vue
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
k8s.kuboard.cn/layer: web
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-multishop-vue
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-multishop-vue
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-multishop-vue
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-13T11:58:12+08:00'
spec:
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-multishop-vue
image: '192.168.1.11:80/tmerclub-release/tmerclub-multishop-vue:0'
2025-03-19 15:04:57 +08:00
resources: {}
livenessProbe:
httpGet:
path: /
port: 80
scheme: HTTP
initialDelaySeconds: 3
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /
port: 80
scheme: HTTP
initialDelaySeconds: 3
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-order
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-order
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-order
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-order
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-order
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-order
image: '192.168.1.11:80/tmerclub-release/tmerclub-order:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-order
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-order/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-payment
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-payment
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-payment
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-payment
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-payment
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-payment
image: '192.168.1.11:80/tmerclub-release/tmerclub-payment:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-payment
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-payment/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-pc
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
k8s.kuboard.cn/layer: web
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-pc
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-pc
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-pc
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-13T11:58:12+08:00'
spec:
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-pc
image: '192.168.1.11:80/tmerclub-release/tmerclub-pc:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
resources: {}
livenessProbe:
httpGet:
path: /
port: 80
scheme: HTTP
initialDelaySeconds: 3
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /
port: 80
scheme: HTTP
initialDelaySeconds: 3
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-admin
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-admin
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-admin
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-admin
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-admin
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-admin
image: '192.168.1.11:80/tmerclub-release/tmerclub-admin:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-admin
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-admin/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-platform-vue
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
k8s.kuboard.cn/layer: web
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-platform-vue
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-platform-vue
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-platform-vue
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-13T11:58:12+08:00'
spec:
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-platform-vue
image: '192.168.1.11:80/tmerclub-release/tmerclub-platform-vue:0'
2025-03-19 15:04:57 +08:00
resources: {}
livenessProbe:
httpGet:
path: /
port: 80
scheme: HTTP
initialDelaySeconds: 3
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /
port: 80
scheme: HTTP
initialDelaySeconds: 3
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-product
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-product
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-product
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-product
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-product
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-product
image: '192.168.1.11:80/tmerclub-release/tmerclub-product:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-product
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-product/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-search
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-search
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-search
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-search
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-search
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-search
image: '192.168.1.11:80/tmerclub-release/tmerclub-search:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-search
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-search/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-seckill
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-seckill
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-seckill
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-seckill
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-seckill
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-seckill
image: '192.168.1.11:80/tmerclub-release/tmerclub-seckill:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-seckill
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-seckill/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-supplier-vue
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
k8s.kuboard.cn/layer: web
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-supplier-vue
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-supplier-vue
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-supplier-vue
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-13T11:58:12+08:00'
spec:
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-supplier-vue
image: '192.168.1.11:80/tmerclub-release/tmerclub-supplier-vue:0'
2025-03-19 15:04:57 +08:00
resources: {}
livenessProbe:
httpGet:
path: /
port: 80
scheme: HTTP
initialDelaySeconds: 3
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /
port: 80
scheme: HTTP
initialDelaySeconds: 3
timeoutSeconds: 1
periodSeconds: 10
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Deployment
apiVersion: apps/v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-user
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-user
2025-03-19 15:04:57 +08:00
annotations: {}
spec:
replicas: 1
selector:
matchLabels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-user
2025-03-19 15:04:57 +08:00
template:
metadata:
creationTimestamp: null
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-user
2025-03-19 15:04:57 +08:00
annotations:
kubectl.kubernetes.io/restartedAt: '2022-10-12T16:47:44+08:00'
spec:
volumes:
2025-03-20 17:43:07 +08:00
- name: tmerclub-user
2025-03-19 15:04:57 +08:00
nfs:
server: 192.168.1.28
2025-03-20 17:43:07 +08:00
path: /nfs/data/tmerclub-release/
2025-03-19 15:04:57 +08:00
containers:
2025-03-20 17:43:07 +08:00
- name: tmerclub-user
image: '192.168.1.11:80/tmerclub-release/tmerclub-user:0'
2025-03-19 15:04:57 +08:00
env:
- name: TZ
value: Asia/Shanghai
- name: NACOS_HOST
value: 10.1.107.162
- name: NACOS_PORT
value: '8848'
- name: NACOS_NAMESPACE
2025-03-20 17:43:07 +08:00
value: tmerclub-release
2025-03-19 15:04:57 +08:00
resources: {}
volumeMounts:
2025-03-20 17:43:07 +08:00
- name: tmerclub-user
mountPath: /opt/projects/tmerclub/log
subPath: ./tmerclub-user/log
2025-03-19 15:04:57 +08:00
livenessProbe:
httpGet:
path: /live
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /ready
port: 22222
scheme: HTTP
initialDelaySeconds: 30
timeoutSeconds: 1
periodSeconds: 30
successThreshold: 1
failureThreshold: 3
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: Default
securityContext: {}
imagePullSecrets:
- name: harbor
schedulerName: default-scheduler
dnsConfig: {}
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-auth
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-auth
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9101
targetPort: 9101
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-auth
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-biz
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-biz
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9118
targetPort: 9118
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-biz
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-marketing
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-marketing
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9109
targetPort: 9109
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-marketing
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-flow
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-flow
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9116
targetPort: 9116
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-flow
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-gateway
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
k8s.kuboard.cn/layer: gateway
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-gateway
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 8000
targetPort: 8000
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-gateway
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-group
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-group
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9114
targetPort: 9114
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-group
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-h5
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
k8s.kuboard.cn/layer: web
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-h5
2025-03-19 15:04:57 +08:00
spec:
ports:
- name: gp3zqc
protocol: TCP
port: 80
targetPort: 80
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-h5
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-im
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-im
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9120
targetPort: 9120
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-im
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-order
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-order
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9106
targetPort: 9106
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-order
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-payment
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-payment
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9113
targetPort: 9113
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-payment
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-pc
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
k8s.kuboard.cn/layer: web
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-pc
2025-03-19 15:04:57 +08:00
spec:
ports:
- name: gp3zqc
protocol: TCP
port: 80
targetPort: 80
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-pc
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-admin
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-admin
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9112
targetPort: 9112
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-admin
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-platform-vue
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
k8s.kuboard.cn/layer: web
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-platform-vue
2025-03-19 15:04:57 +08:00
spec:
ports:
- name: gp3zqc
protocol: TCP
port: 80
targetPort: 80
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-platform-vue
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-product
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-product
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9104
targetPort: 9104
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-product
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-search
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-search
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9108
targetPort: 9108
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-search
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-seckill
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-seckill
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9115
targetPort: 9115
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-seckill
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-supplier-vue
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
k8s.kuboard.cn/layer: web
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-supplier-vue
2025-03-19 15:04:57 +08:00
spec:
ports:
- name: gp3zqc
protocol: TCP
port: 80
targetPort: 80
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-supplier-vue
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster
---
kind: Service
apiVersion: v1
metadata:
2025-03-20 17:43:07 +08:00
name: tmerclub-user
namespace: tmerclub-release
2025-03-19 15:04:57 +08:00
labels:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-user
2025-03-19 15:04:57 +08:00
spec:
ports:
- protocol: TCP
port: 9105
targetPort: 9105
selector:
2025-03-20 17:43:07 +08:00
k8s.kuboard.cn/name: tmerclub-user
2025-03-19 15:04:57 +08:00
type: ClusterIP
sessionAffinity: None
ipFamilies:
- IPv4
ipFamilyPolicy: SingleStack
internalTrafficPolicy: Cluster