values.yaml 21 KB

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