| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076 |
- # Microservice Platform - Shop Recycle Services Configuration
- # Spring Cloud format with standardized application.properties
- # Global configuration shared across all services
- global:
- image:
- registry: your-registry
- pullPolicy: IfNotPresent
- labels:
- platform: microservice-platform
- project: shop-recycle
- version: "1.0"
- annotations: {}
- # Enable legacy single-service templates only when needed
- single:
- enabled: false
- # Base chart configuration
- base:
- enabled: true
- # shop-recycle-payment Configuration
- shop-recycle-payment:
- enabled: true
- app:
- name: shop-recycle-payment
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-payment
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1218
- targetPort: 1218
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-store Configuration
- shop-recycle-store:
- enabled: true
- app:
- name: shop-recycle-store
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-store
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1208
- targetPort: 1208
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-pis Configuration
- shop-recycle-pis:
- enabled: true
- app:
- name: shop-recycle-pis
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-pis
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1209
- targetPort: 1209
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-merchant Configuration
- shop-recycle-merchant:
- enabled: true
- app:
- name: shop-recycle-merchant
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-merchant
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1204
- targetPort: 1204
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-account Configuration
- shop-recycle-account:
- enabled: true
- app:
- name: shop-recycle-account
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-account
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1223
- targetPort: 1223
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-msg Configuration
- shop-recycle-msg:
- enabled: true
- app:
- name: shop-recycle-msg
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-msg
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1217
- targetPort: 1217
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-order-center Configuration
- shop-recycle-order-center:
- enabled: true
- app:
- name: shop-recycle-order-center
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-order-center
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1203
- targetPort: 1203
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-wechat Configuration
- shop-recycle-wechat:
- enabled: true
- app:
- name: shop-recycle-wechat
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-wechat
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1231
- targetPort: 1231
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-data-statistics Configuration
- shop-recycle-data-statistics:
- enabled: true
- app:
- name: shop-recycle-data-statistics
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-data-statistics
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1220
- targetPort: 1220
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-platform Configuration
- shop-recycle-platform:
- enabled: true
- app:
- name: shop-recycle-platform
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-platform
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1201
- targetPort: 1201
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-wechat-web Configuration
- shop-recycle-wechat-web:
- enabled: true
- app:
- name: shop-recycle-wechat-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-wechat-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1214
- targetPort: 1214
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-payment-web Configuration
- shop-recycle-payment-web:
- enabled: true
- app:
- name: shop-recycle-payment-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-payment-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1219
- targetPort: 1219
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-store-wechat-web Configuration
- shop-recycle-store-wechat-web:
- enabled: true
- app:
- name: shop-recycle-store-wechat-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-store-wechat-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1207
- targetPort: 1207
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-platform-pc-web Configuration
- shop-recycle-platform-pc-web:
- enabled: true
- app:
- name: shop-recycle-platform-pc-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-platform-pc-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1202
- targetPort: 1202
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-out-web Configuration
- shop-recycle-out-web:
- enabled: true
- app:
- name: shop-recycle-out-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-out-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1224
- targetPort: 1224
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-store-pc-web Configuration
- shop-recycle-store-pc-web:
- enabled: true
- app:
- name: shop-recycle-store-pc-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-store-pc-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1222
- targetPort: 1222
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-login-center Configuration
- shop-recycle-login-center:
- enabled: true
- app:
- name: shop-recycle-login-center
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-login-center
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1210
- targetPort: 1210
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-oss-web Configuration
- shop-recycle-oss-web:
- enabled: true
- app:
- name: shop-recycle-oss-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-oss-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1212
- targetPort: 1212
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-gateway Configuration
- shop-recycle-gateway:
- enabled: true
- app:
- name: shop-recycle-gateway
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-gateway
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1211
- targetPort: 1211
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-sche Configuration
- shop-recycle-sche:
- enabled: true
- app:
- name: shop-recycle-sche
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-sche
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1215
- targetPort: 1215
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-merchant-wechat-web Configuration
- shop-recycle-merchant-wechat-web:
- enabled: true
- app:
- name: shop-recycle-merchant-wechat-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-merchant-wechat-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1206
- targetPort: 1206
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-import-web Configuration
- shop-recycle-import-web:
- enabled: true
- app:
- name: shop-recycle-import-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-import-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1221
- targetPort: 1221
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-marketer-pc-web Configuration
- shop-recycle-marketer-pc-web:
- enabled: true
- app:
- name: shop-recycle-marketer-pc-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-marketer-pc-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1232
- targetPort: 1232
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-erp-pc-web Configuration
- shop-recycle-erp-pc-web:
- enabled: true
- app:
- name: shop-recycle-erp-pc-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-erp-pc-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1228
- targetPort: 1228
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-merchant-pc-web Configuration
- shop-recycle-merchant-pc-web:
- enabled: true
- app:
- name: shop-recycle-merchant-pc-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-merchant-pc-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1205
- targetPort: 1205
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-ws-web Configuration
- shop-recycle-ws-web:
- enabled: true
- app:
- name: shop-recycle-ws-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-ws-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1233
- targetPort: 1233
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-agent-pc-web Configuration
- shop-recycle-agent-pc-web:
- enabled: true
- app:
- name: shop-recycle-agent-pc-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-agent-pc-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1225
- targetPort: 1225
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-customer-wechat-web Configuration
- shop-recycle-customer-wechat-web:
- enabled: true
- app:
- name: shop-recycle-customer-wechat-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-customer-wechat-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1227
- targetPort: 1227
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-gateway-out Configuration
- shop-recycle-gateway-out:
- enabled: true
- app:
- name: shop-recycle-gateway-out
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-gateway-out
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1226
- targetPort: 1226
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-gateway-out-upgrade Configuration
- shop-recycle-gateway-out-upgrade:
- enabled: true
- app:
- name: shop-recycle-gateway-out-upgrade
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-gateway-out-upgrade
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1237
- targetPort: 1237
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-async-web Configuration
- shop-recycle-async-web:
- enabled: true
- app:
- name: shop-recycle-async-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-async-web
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1239
- targetPort: 1239
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-dealdata-service Configuration
- shop-recycle-dealdata-service:
- enabled: true
- app:
- name: shop-recycle-dealdata-service
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-dealdata-service
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1235
- targetPort: 1235
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-dispatcher Configuration
- shop-recycle-dispatcher:
- enabled: true
- app:
- name: shop-recycle-dispatcher
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-dispatcher
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1236
- targetPort: 1236
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- # shop-recycle-order-search Configuration
- shop-recycle-order-search:
- enabled: true
- app:
- name: shop-recycle-order-search
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-order-search
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 1238
- targetPort: 1238
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
|