| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072 |
- # 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: {}
- # 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-vs-web Configuration
- shop-recycle-vs-web:
- enabled: true
- app:
- name: shop-recycle-vs-web
- replicaCount: 1
- image:
- repository: your-registry/shop-recycle-vs-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
|