values.yaml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793
  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: 8080
  29. targetPort: 8080
  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: 8081
  60. targetPort: 8081
  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: 8082
  91. targetPort: 8082
  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: 8083
  122. targetPort: 8083
  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: 8084
  153. targetPort: 8084
  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: 8085
  184. targetPort: 8085
  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: 8086
  215. targetPort: 8086
  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: 8087
  246. targetPort: 8087
  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: 8088
  277. targetPort: 8088
  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: 8089
  308. targetPort: 8089
  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: 8090
  339. targetPort: 8090
  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: 8091
  370. targetPort: 8091
  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: 8092
  401. targetPort: 8092
  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: 8093
  432. targetPort: 8093
  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: 8094
  463. targetPort: 8094
  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: 8095
  494. targetPort: 8095
  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: 8096
  525. targetPort: 8096
  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: 8097
  556. targetPort: 8097
  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: 8098
  587. targetPort: 8098
  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: 8099
  618. targetPort: 8099
  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: 8100
  649. targetPort: 8100
  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: 8101
  680. targetPort: 8101
  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: 8102
  711. targetPort: 8102
  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: 8103
  742. targetPort: 8103
  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: 8104
  773. targetPort: 8104
  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