values.yaml 21 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072
  1. # Microservice Platform - Shop Recycle Services Configuration
  2. # Spring Cloud format with standardized application.properties
  3. # Global configuration shared across all services
  4. global:
  5. image:
  6. registry: your-registry
  7. pullPolicy: IfNotPresent
  8. labels:
  9. platform: microservice-platform
  10. project: shop-recycle
  11. version: "1.0"
  12. annotations: {}
  13. # Base chart configuration
  14. base:
  15. enabled: true
  16. # shop-recycle-payment Configuration
  17. shop-recycle-payment:
  18. enabled: true
  19. app:
  20. name: shop-recycle-payment
  21. replicaCount: 1
  22. image:
  23. repository: your-registry/shop-recycle-payment
  24. tag: "1.0.0"
  25. pullPolicy: IfNotPresent
  26. service:
  27. type: ClusterIP
  28. port: 1218
  29. targetPort: 1218
  30. resources:
  31. requests:
  32. cpu: 250m
  33. memory: 256Mi
  34. limits:
  35. cpu: 500m
  36. memory: 512Mi
  37. config:
  38. yml:
  39. logging:
  40. level:
  41. root: INFO
  42. management:
  43. endpoints:
  44. web:
  45. exposure:
  46. include: health,info,metrics
  47. # shop-recycle-store Configuration
  48. shop-recycle-store:
  49. enabled: true
  50. app:
  51. name: shop-recycle-store
  52. replicaCount: 1
  53. image:
  54. repository: your-registry/shop-recycle-store
  55. tag: "1.0.0"
  56. pullPolicy: IfNotPresent
  57. service:
  58. type: ClusterIP
  59. port: 1208
  60. targetPort: 1208
  61. resources:
  62. requests:
  63. cpu: 250m
  64. memory: 256Mi
  65. limits:
  66. cpu: 500m
  67. memory: 512Mi
  68. config:
  69. yml:
  70. logging:
  71. level:
  72. root: INFO
  73. management:
  74. endpoints:
  75. web:
  76. exposure:
  77. include: health,info,metrics
  78. # shop-recycle-pis Configuration
  79. shop-recycle-pis:
  80. enabled: true
  81. app:
  82. name: shop-recycle-pis
  83. replicaCount: 1
  84. image:
  85. repository: your-registry/shop-recycle-pis
  86. tag: "1.0.0"
  87. pullPolicy: IfNotPresent
  88. service:
  89. type: ClusterIP
  90. port: 1209
  91. targetPort: 1209
  92. resources:
  93. requests:
  94. cpu: 250m
  95. memory: 256Mi
  96. limits:
  97. cpu: 500m
  98. memory: 512Mi
  99. config:
  100. yml:
  101. logging:
  102. level:
  103. root: INFO
  104. management:
  105. endpoints:
  106. web:
  107. exposure:
  108. include: health,info,metrics
  109. # shop-recycle-merchant Configuration
  110. shop-recycle-merchant:
  111. enabled: true
  112. app:
  113. name: shop-recycle-merchant
  114. replicaCount: 1
  115. image:
  116. repository: your-registry/shop-recycle-merchant
  117. tag: "1.0.0"
  118. pullPolicy: IfNotPresent
  119. service:
  120. type: ClusterIP
  121. port: 1204
  122. targetPort: 1204
  123. resources:
  124. requests:
  125. cpu: 250m
  126. memory: 256Mi
  127. limits:
  128. cpu: 500m
  129. memory: 512Mi
  130. config:
  131. yml:
  132. logging:
  133. level:
  134. root: INFO
  135. management:
  136. endpoints:
  137. web:
  138. exposure:
  139. include: health,info,metrics
  140. # shop-recycle-account Configuration
  141. shop-recycle-account:
  142. enabled: true
  143. app:
  144. name: shop-recycle-account
  145. replicaCount: 1
  146. image:
  147. repository: your-registry/shop-recycle-account
  148. tag: "1.0.0"
  149. pullPolicy: IfNotPresent
  150. service:
  151. type: ClusterIP
  152. port: 1223
  153. targetPort: 1223
  154. resources:
  155. requests:
  156. cpu: 250m
  157. memory: 256Mi
  158. limits:
  159. cpu: 500m
  160. memory: 512Mi
  161. config:
  162. yml:
  163. logging:
  164. level:
  165. root: INFO
  166. management:
  167. endpoints:
  168. web:
  169. exposure:
  170. include: health,info,metrics
  171. # shop-recycle-msg Configuration
  172. shop-recycle-msg:
  173. enabled: true
  174. app:
  175. name: shop-recycle-msg
  176. replicaCount: 1
  177. image:
  178. repository: your-registry/shop-recycle-msg
  179. tag: "1.0.0"
  180. pullPolicy: IfNotPresent
  181. service:
  182. type: ClusterIP
  183. port: 1217
  184. targetPort: 1217
  185. resources:
  186. requests:
  187. cpu: 250m
  188. memory: 256Mi
  189. limits:
  190. cpu: 500m
  191. memory: 512Mi
  192. config:
  193. yml:
  194. logging:
  195. level:
  196. root: INFO
  197. management:
  198. endpoints:
  199. web:
  200. exposure:
  201. include: health,info,metrics
  202. # shop-recycle-order-center Configuration
  203. shop-recycle-order-center:
  204. enabled: true
  205. app:
  206. name: shop-recycle-order-center
  207. replicaCount: 1
  208. image:
  209. repository: your-registry/shop-recycle-order-center
  210. tag: "1.0.0"
  211. pullPolicy: IfNotPresent
  212. service:
  213. type: ClusterIP
  214. port: 1203
  215. targetPort: 1203
  216. resources:
  217. requests:
  218. cpu: 250m
  219. memory: 256Mi
  220. limits:
  221. cpu: 500m
  222. memory: 512Mi
  223. config:
  224. yml:
  225. logging:
  226. level:
  227. root: INFO
  228. management:
  229. endpoints:
  230. web:
  231. exposure:
  232. include: health,info,metrics
  233. # shop-recycle-wechat Configuration
  234. shop-recycle-wechat:
  235. enabled: true
  236. app:
  237. name: shop-recycle-wechat
  238. replicaCount: 1
  239. image:
  240. repository: your-registry/shop-recycle-wechat
  241. tag: "1.0.0"
  242. pullPolicy: IfNotPresent
  243. service:
  244. type: ClusterIP
  245. port: 1231
  246. targetPort: 1231
  247. resources:
  248. requests:
  249. cpu: 250m
  250. memory: 256Mi
  251. limits:
  252. cpu: 500m
  253. memory: 512Mi
  254. config:
  255. yml:
  256. logging:
  257. level:
  258. root: INFO
  259. management:
  260. endpoints:
  261. web:
  262. exposure:
  263. include: health,info,metrics
  264. # shop-recycle-data-statistics Configuration
  265. shop-recycle-data-statistics:
  266. enabled: true
  267. app:
  268. name: shop-recycle-data-statistics
  269. replicaCount: 1
  270. image:
  271. repository: your-registry/shop-recycle-data-statistics
  272. tag: "1.0.0"
  273. pullPolicy: IfNotPresent
  274. service:
  275. type: ClusterIP
  276. port: 1220
  277. targetPort: 1220
  278. resources:
  279. requests:
  280. cpu: 250m
  281. memory: 256Mi
  282. limits:
  283. cpu: 500m
  284. memory: 512Mi
  285. config:
  286. yml:
  287. logging:
  288. level:
  289. root: INFO
  290. management:
  291. endpoints:
  292. web:
  293. exposure:
  294. include: health,info,metrics
  295. # shop-recycle-platform Configuration
  296. shop-recycle-platform:
  297. enabled: true
  298. app:
  299. name: shop-recycle-platform
  300. replicaCount: 1
  301. image:
  302. repository: your-registry/shop-recycle-platform
  303. tag: "1.0.0"
  304. pullPolicy: IfNotPresent
  305. service:
  306. type: ClusterIP
  307. port: 1201
  308. targetPort: 1201
  309. resources:
  310. requests:
  311. cpu: 250m
  312. memory: 256Mi
  313. limits:
  314. cpu: 500m
  315. memory: 512Mi
  316. config:
  317. yml:
  318. logging:
  319. level:
  320. root: INFO
  321. management:
  322. endpoints:
  323. web:
  324. exposure:
  325. include: health,info,metrics
  326. # shop-recycle-wechat-web Configuration
  327. shop-recycle-wechat-web:
  328. enabled: true
  329. app:
  330. name: shop-recycle-wechat-web
  331. replicaCount: 1
  332. image:
  333. repository: your-registry/shop-recycle-wechat-web
  334. tag: "1.0.0"
  335. pullPolicy: IfNotPresent
  336. service:
  337. type: ClusterIP
  338. port: 1214
  339. targetPort: 1214
  340. resources:
  341. requests:
  342. cpu: 250m
  343. memory: 256Mi
  344. limits:
  345. cpu: 500m
  346. memory: 512Mi
  347. config:
  348. yml:
  349. logging:
  350. level:
  351. root: INFO
  352. management:
  353. endpoints:
  354. web:
  355. exposure:
  356. include: health,info,metrics
  357. # shop-recycle-payment-web Configuration
  358. shop-recycle-payment-web:
  359. enabled: true
  360. app:
  361. name: shop-recycle-payment-web
  362. replicaCount: 1
  363. image:
  364. repository: your-registry/shop-recycle-payment-web
  365. tag: "1.0.0"
  366. pullPolicy: IfNotPresent
  367. service:
  368. type: ClusterIP
  369. port: 1219
  370. targetPort: 1219
  371. resources:
  372. requests:
  373. cpu: 250m
  374. memory: 256Mi
  375. limits:
  376. cpu: 500m
  377. memory: 512Mi
  378. config:
  379. yml:
  380. logging:
  381. level:
  382. root: INFO
  383. management:
  384. endpoints:
  385. web:
  386. exposure:
  387. include: health,info,metrics
  388. # shop-recycle-store-wechat-web Configuration
  389. shop-recycle-store-wechat-web:
  390. enabled: true
  391. app:
  392. name: shop-recycle-store-wechat-web
  393. replicaCount: 1
  394. image:
  395. repository: your-registry/shop-recycle-store-wechat-web
  396. tag: "1.0.0"
  397. pullPolicy: IfNotPresent
  398. service:
  399. type: ClusterIP
  400. port: 1207
  401. targetPort: 1207
  402. resources:
  403. requests:
  404. cpu: 250m
  405. memory: 256Mi
  406. limits:
  407. cpu: 500m
  408. memory: 512Mi
  409. config:
  410. yml:
  411. logging:
  412. level:
  413. root: INFO
  414. management:
  415. endpoints:
  416. web:
  417. exposure:
  418. include: health,info,metrics
  419. # shop-recycle-platform-pc-web Configuration
  420. shop-recycle-platform-pc-web:
  421. enabled: true
  422. app:
  423. name: shop-recycle-platform-pc-web
  424. replicaCount: 1
  425. image:
  426. repository: your-registry/shop-recycle-platform-pc-web
  427. tag: "1.0.0"
  428. pullPolicy: IfNotPresent
  429. service:
  430. type: ClusterIP
  431. port: 1202
  432. targetPort: 1202
  433. resources:
  434. requests:
  435. cpu: 250m
  436. memory: 256Mi
  437. limits:
  438. cpu: 500m
  439. memory: 512Mi
  440. config:
  441. yml:
  442. logging:
  443. level:
  444. root: INFO
  445. management:
  446. endpoints:
  447. web:
  448. exposure:
  449. include: health,info,metrics
  450. # shop-recycle-out-web Configuration
  451. shop-recycle-out-web:
  452. enabled: true
  453. app:
  454. name: shop-recycle-out-web
  455. replicaCount: 1
  456. image:
  457. repository: your-registry/shop-recycle-out-web
  458. tag: "1.0.0"
  459. pullPolicy: IfNotPresent
  460. service:
  461. type: ClusterIP
  462. port: 1224
  463. targetPort: 1224
  464. resources:
  465. requests:
  466. cpu: 250m
  467. memory: 256Mi
  468. limits:
  469. cpu: 500m
  470. memory: 512Mi
  471. config:
  472. yml:
  473. logging:
  474. level:
  475. root: INFO
  476. management:
  477. endpoints:
  478. web:
  479. exposure:
  480. include: health,info,metrics
  481. # shop-recycle-store-pc-web Configuration
  482. shop-recycle-store-pc-web:
  483. enabled: true
  484. app:
  485. name: shop-recycle-store-pc-web
  486. replicaCount: 1
  487. image:
  488. repository: your-registry/shop-recycle-store-pc-web
  489. tag: "1.0.0"
  490. pullPolicy: IfNotPresent
  491. service:
  492. type: ClusterIP
  493. port: 1222
  494. targetPort: 1222
  495. resources:
  496. requests:
  497. cpu: 250m
  498. memory: 256Mi
  499. limits:
  500. cpu: 500m
  501. memory: 512Mi
  502. config:
  503. yml:
  504. logging:
  505. level:
  506. root: INFO
  507. management:
  508. endpoints:
  509. web:
  510. exposure:
  511. include: health,info,metrics
  512. # shop-recycle-login-center Configuration
  513. shop-recycle-login-center:
  514. enabled: true
  515. app:
  516. name: shop-recycle-login-center
  517. replicaCount: 1
  518. image:
  519. repository: your-registry/shop-recycle-login-center
  520. tag: "1.0.0"
  521. pullPolicy: IfNotPresent
  522. service:
  523. type: ClusterIP
  524. port: 1210
  525. targetPort: 1210
  526. resources:
  527. requests:
  528. cpu: 250m
  529. memory: 256Mi
  530. limits:
  531. cpu: 500m
  532. memory: 512Mi
  533. config:
  534. yml:
  535. logging:
  536. level:
  537. root: INFO
  538. management:
  539. endpoints:
  540. web:
  541. exposure:
  542. include: health,info,metrics
  543. # shop-recycle-oss-web Configuration
  544. shop-recycle-oss-web:
  545. enabled: true
  546. app:
  547. name: shop-recycle-oss-web
  548. replicaCount: 1
  549. image:
  550. repository: your-registry/shop-recycle-oss-web
  551. tag: "1.0.0"
  552. pullPolicy: IfNotPresent
  553. service:
  554. type: ClusterIP
  555. port: 1212
  556. targetPort: 1212
  557. resources:
  558. requests:
  559. cpu: 250m
  560. memory: 256Mi
  561. limits:
  562. cpu: 500m
  563. memory: 512Mi
  564. config:
  565. yml:
  566. logging:
  567. level:
  568. root: INFO
  569. management:
  570. endpoints:
  571. web:
  572. exposure:
  573. include: health,info,metrics
  574. # shop-recycle-gateway Configuration
  575. shop-recycle-gateway:
  576. enabled: true
  577. app:
  578. name: shop-recycle-gateway
  579. replicaCount: 1
  580. image:
  581. repository: your-registry/shop-recycle-gateway
  582. tag: "1.0.0"
  583. pullPolicy: IfNotPresent
  584. service:
  585. type: ClusterIP
  586. port: 1211
  587. targetPort: 1211
  588. resources:
  589. requests:
  590. cpu: 250m
  591. memory: 256Mi
  592. limits:
  593. cpu: 500m
  594. memory: 512Mi
  595. config:
  596. yml:
  597. logging:
  598. level:
  599. root: INFO
  600. management:
  601. endpoints:
  602. web:
  603. exposure:
  604. include: health,info,metrics
  605. # shop-recycle-sche Configuration
  606. shop-recycle-sche:
  607. enabled: true
  608. app:
  609. name: shop-recycle-sche
  610. replicaCount: 1
  611. image:
  612. repository: your-registry/shop-recycle-sche
  613. tag: "1.0.0"
  614. pullPolicy: IfNotPresent
  615. service:
  616. type: ClusterIP
  617. port: 1215
  618. targetPort: 1215
  619. resources:
  620. requests:
  621. cpu: 250m
  622. memory: 256Mi
  623. limits:
  624. cpu: 500m
  625. memory: 512Mi
  626. config:
  627. yml:
  628. logging:
  629. level:
  630. root: INFO
  631. management:
  632. endpoints:
  633. web:
  634. exposure:
  635. include: health,info,metrics
  636. # shop-recycle-merchant-wechat-web Configuration
  637. shop-recycle-merchant-wechat-web:
  638. enabled: true
  639. app:
  640. name: shop-recycle-merchant-wechat-web
  641. replicaCount: 1
  642. image:
  643. repository: your-registry/shop-recycle-merchant-wechat-web
  644. tag: "1.0.0"
  645. pullPolicy: IfNotPresent
  646. service:
  647. type: ClusterIP
  648. port: 1206
  649. targetPort: 1206
  650. resources:
  651. requests:
  652. cpu: 250m
  653. memory: 256Mi
  654. limits:
  655. cpu: 500m
  656. memory: 512Mi
  657. config:
  658. yml:
  659. logging:
  660. level:
  661. root: INFO
  662. management:
  663. endpoints:
  664. web:
  665. exposure:
  666. include: health,info,metrics
  667. # shop-recycle-import-web Configuration
  668. shop-recycle-import-web:
  669. enabled: true
  670. app:
  671. name: shop-recycle-import-web
  672. replicaCount: 1
  673. image:
  674. repository: your-registry/shop-recycle-import-web
  675. tag: "1.0.0"
  676. pullPolicy: IfNotPresent
  677. service:
  678. type: ClusterIP
  679. port: 1221
  680. targetPort: 1221
  681. resources:
  682. requests:
  683. cpu: 250m
  684. memory: 256Mi
  685. limits:
  686. cpu: 500m
  687. memory: 512Mi
  688. config:
  689. yml:
  690. logging:
  691. level:
  692. root: INFO
  693. management:
  694. endpoints:
  695. web:
  696. exposure:
  697. include: health,info,metrics
  698. # shop-recycle-marketer-pc-web Configuration
  699. shop-recycle-marketer-pc-web:
  700. enabled: true
  701. app:
  702. name: shop-recycle-marketer-pc-web
  703. replicaCount: 1
  704. image:
  705. repository: your-registry/shop-recycle-marketer-pc-web
  706. tag: "1.0.0"
  707. pullPolicy: IfNotPresent
  708. service:
  709. type: ClusterIP
  710. port: 1232
  711. targetPort: 1232
  712. resources:
  713. requests:
  714. cpu: 250m
  715. memory: 256Mi
  716. limits:
  717. cpu: 500m
  718. memory: 512Mi
  719. config:
  720. yml:
  721. logging:
  722. level:
  723. root: INFO
  724. management:
  725. endpoints:
  726. web:
  727. exposure:
  728. include: health,info,metrics
  729. # shop-recycle-erp-pc-web Configuration
  730. shop-recycle-erp-pc-web:
  731. enabled: true
  732. app:
  733. name: shop-recycle-erp-pc-web
  734. replicaCount: 1
  735. image:
  736. repository: your-registry/shop-recycle-erp-pc-web
  737. tag: "1.0.0"
  738. pullPolicy: IfNotPresent
  739. service:
  740. type: ClusterIP
  741. port: 1228
  742. targetPort: 1228
  743. resources:
  744. requests:
  745. cpu: 250m
  746. memory: 256Mi
  747. limits:
  748. cpu: 500m
  749. memory: 512Mi
  750. config:
  751. yml:
  752. logging:
  753. level:
  754. root: INFO
  755. management:
  756. endpoints:
  757. web:
  758. exposure:
  759. include: health,info,metrics
  760. # shop-recycle-merchant-pc-web Configuration
  761. shop-recycle-merchant-pc-web:
  762. enabled: true
  763. app:
  764. name: shop-recycle-merchant-pc-web
  765. replicaCount: 1
  766. image:
  767. repository: your-registry/shop-recycle-merchant-pc-web
  768. tag: "1.0.0"
  769. pullPolicy: IfNotPresent
  770. service:
  771. type: ClusterIP
  772. port: 1205
  773. targetPort: 1205
  774. resources:
  775. requests:
  776. cpu: 250m
  777. memory: 256Mi
  778. limits:
  779. cpu: 500m
  780. memory: 512Mi
  781. config:
  782. yml:
  783. logging:
  784. level:
  785. root: INFO
  786. management:
  787. endpoints:
  788. web:
  789. exposure:
  790. include: health,info,metrics
  791. # shop-recycle-vs-web Configuration
  792. shop-recycle-vs-web:
  793. enabled: true
  794. app:
  795. name: shop-recycle-vs-web
  796. replicaCount: 1
  797. image:
  798. repository: your-registry/shop-recycle-vs-web
  799. tag: "1.0.0"
  800. pullPolicy: IfNotPresent
  801. service:
  802. type: ClusterIP
  803. port: 1233
  804. targetPort: 1233
  805. resources:
  806. requests:
  807. cpu: 250m
  808. memory: 256Mi
  809. limits:
  810. cpu: 500m
  811. memory: 512Mi
  812. config:
  813. yml:
  814. logging:
  815. level:
  816. root: INFO
  817. management:
  818. endpoints:
  819. web:
  820. exposure:
  821. include: health,info,metrics
  822. # shop-recycle-agent-pc-web Configuration
  823. shop-recycle-agent-pc-web:
  824. enabled: true
  825. app:
  826. name: shop-recycle-agent-pc-web
  827. replicaCount: 1
  828. image:
  829. repository: your-registry/shop-recycle-agent-pc-web
  830. tag: "1.0.0"
  831. pullPolicy: IfNotPresent
  832. service:
  833. type: ClusterIP
  834. port: 1225
  835. targetPort: 1225
  836. resources:
  837. requests:
  838. cpu: 250m
  839. memory: 256Mi
  840. limits:
  841. cpu: 500m
  842. memory: 512Mi
  843. config:
  844. yml:
  845. logging:
  846. level:
  847. root: INFO
  848. management:
  849. endpoints:
  850. web:
  851. exposure:
  852. include: health,info,metrics
  853. # shop-recycle-customer-wechat-web Configuration
  854. shop-recycle-customer-wechat-web:
  855. enabled: true
  856. app:
  857. name: shop-recycle-customer-wechat-web
  858. replicaCount: 1
  859. image:
  860. repository: your-registry/shop-recycle-customer-wechat-web
  861. tag: "1.0.0"
  862. pullPolicy: IfNotPresent
  863. service:
  864. type: ClusterIP
  865. port: 1227
  866. targetPort: 1227
  867. resources:
  868. requests:
  869. cpu: 250m
  870. memory: 256Mi
  871. limits:
  872. cpu: 500m
  873. memory: 512Mi
  874. config:
  875. yml:
  876. logging:
  877. level:
  878. root: INFO
  879. management:
  880. endpoints:
  881. web:
  882. exposure:
  883. include: health,info,metrics
  884. # shop-recycle-gateway-out Configuration
  885. shop-recycle-gateway-out:
  886. enabled: true
  887. app:
  888. name: shop-recycle-gateway-out
  889. replicaCount: 1
  890. image:
  891. repository: your-registry/shop-recycle-gateway-out
  892. tag: "1.0.0"
  893. pullPolicy: IfNotPresent
  894. service:
  895. type: ClusterIP
  896. port: 1226
  897. targetPort: 1226
  898. resources:
  899. requests:
  900. cpu: 250m
  901. memory: 256Mi
  902. limits:
  903. cpu: 500m
  904. memory: 512Mi
  905. config:
  906. yml:
  907. logging:
  908. level:
  909. root: INFO
  910. management:
  911. endpoints:
  912. web:
  913. exposure:
  914. include: health,info,metrics
  915. # shop-recycle-gateway-out-upgrade Configuration
  916. shop-recycle-gateway-out-upgrade:
  917. enabled: true
  918. app:
  919. name: shop-recycle-gateway-out-upgrade
  920. replicaCount: 1
  921. image:
  922. repository: your-registry/shop-recycle-gateway-out-upgrade
  923. tag: "1.0.0"
  924. pullPolicy: IfNotPresent
  925. service:
  926. type: ClusterIP
  927. port: 1237
  928. targetPort: 1237
  929. resources:
  930. requests:
  931. cpu: 250m
  932. memory: 256Mi
  933. limits:
  934. cpu: 500m
  935. memory: 512Mi
  936. config:
  937. yml:
  938. logging:
  939. level:
  940. root: INFO
  941. management:
  942. endpoints:
  943. web:
  944. exposure:
  945. include: health,info,metrics
  946. # shop-recycle-async-web Configuration
  947. shop-recycle-async-web:
  948. enabled: true
  949. app:
  950. name: shop-recycle-async-web
  951. replicaCount: 1
  952. image:
  953. repository: your-registry/shop-recycle-async-web
  954. tag: "1.0.0"
  955. pullPolicy: IfNotPresent
  956. service:
  957. type: ClusterIP
  958. port: 1239
  959. targetPort: 1239
  960. resources:
  961. requests:
  962. cpu: 250m
  963. memory: 256Mi
  964. limits:
  965. cpu: 500m
  966. memory: 512Mi
  967. config:
  968. yml:
  969. logging:
  970. level:
  971. root: INFO
  972. management:
  973. endpoints:
  974. web:
  975. exposure:
  976. include: health,info,metrics
  977. # shop-recycle-dealdata-service Configuration
  978. shop-recycle-dealdata-service:
  979. enabled: true
  980. app:
  981. name: shop-recycle-dealdata-service
  982. replicaCount: 1
  983. image:
  984. repository: your-registry/shop-recycle-dealdata-service
  985. tag: "1.0.0"
  986. pullPolicy: IfNotPresent
  987. service:
  988. type: ClusterIP
  989. port: 1235
  990. targetPort: 1235
  991. resources:
  992. requests:
  993. cpu: 250m
  994. memory: 256Mi
  995. limits:
  996. cpu: 500m
  997. memory: 512Mi
  998. config:
  999. yml:
  1000. logging:
  1001. level:
  1002. root: INFO
  1003. management:
  1004. endpoints:
  1005. web:
  1006. exposure:
  1007. include: health,info,metrics
  1008. # shop-recycle-dispatcher Configuration
  1009. shop-recycle-dispatcher:
  1010. enabled: true
  1011. app:
  1012. name: shop-recycle-dispatcher
  1013. replicaCount: 1
  1014. image:
  1015. repository: your-registry/shop-recycle-dispatcher
  1016. tag: "1.0.0"
  1017. pullPolicy: IfNotPresent
  1018. service:
  1019. type: ClusterIP
  1020. port: 1236
  1021. targetPort: 1236
  1022. resources:
  1023. requests:
  1024. cpu: 250m
  1025. memory: 256Mi
  1026. limits:
  1027. cpu: 500m
  1028. memory: 512Mi
  1029. config:
  1030. yml:
  1031. logging:
  1032. level:
  1033. root: INFO
  1034. management:
  1035. endpoints:
  1036. web:
  1037. exposure:
  1038. include: health,info,metrics
  1039. # shop-recycle-order-search Configuration
  1040. shop-recycle-order-search:
  1041. enabled: true
  1042. app:
  1043. name: shop-recycle-order-search
  1044. replicaCount: 1
  1045. image:
  1046. repository: your-registry/shop-recycle-order-search
  1047. tag: "1.0.0"
  1048. pullPolicy: IfNotPresent
  1049. service:
  1050. type: ClusterIP
  1051. port: 1238
  1052. targetPort: 1238
  1053. resources:
  1054. requests:
  1055. cpu: 250m
  1056. memory: 256Mi
  1057. limits:
  1058. cpu: 500m
  1059. memory: 512Mi
  1060. config:
  1061. yml:
  1062. logging:
  1063. level:
  1064. root: INFO
  1065. management:
  1066. endpoints:
  1067. web:
  1068. exposure:
  1069. include: health,info,metrics