values.yaml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993
  1. # Microservice Platform - Shop Recycle Services Configuration
  2. # This file contains global configuration for all microservices
  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. properties:
  39. spring.application.name: shop-recycle-payment
  40. spring.jpa.hibernate.ddl-auto: update
  41. spring.datasource.url: jdbc:mysql://mysql-service:3306/paymentdb
  42. spring.datasource.username: root
  43. spring.datasource.password: password
  44. server.port: "8080"
  45. yml:
  46. logging:
  47. level:
  48. root: INFO
  49. management:
  50. endpoints:
  51. web:
  52. exposure:
  53. include: health,info,metrics
  54. # shop-recycle-store Configuration
  55. shop-recycle-store:
  56. enabled: true
  57. app:
  58. name: shop-recycle-store
  59. replicaCount: 1
  60. image:
  61. repository: your-registry/shop-recycle-store
  62. tag: "1.0.0"
  63. pullPolicy: IfNotPresent
  64. service:
  65. type: ClusterIP
  66. port: 8081
  67. targetPort: 8081
  68. resources:
  69. requests:
  70. cpu: 250m
  71. memory: 256Mi
  72. limits:
  73. cpu: 500m
  74. memory: 512Mi
  75. config:
  76. properties:
  77. spring.application.name: shop-recycle-store
  78. spring.jpa.hibernate.ddl-auto: update
  79. spring.datasource.url: jdbc:mysql://mysql-service:3306/storedb
  80. spring.datasource.username: root
  81. spring.datasource.password: password
  82. server.port: "8081"
  83. yml:
  84. logging:
  85. level:
  86. root: INFO
  87. management:
  88. endpoints:
  89. web:
  90. exposure:
  91. include: health,info,metrics
  92. # shop-recycle-pis Configuration
  93. shop-recycle-pis:
  94. enabled: true
  95. app:
  96. name: shop-recycle-pis
  97. replicaCount: 1
  98. image:
  99. repository: your-registry/shop-recycle-pis
  100. tag: "1.0.0"
  101. pullPolicy: IfNotPresent
  102. service:
  103. type: ClusterIP
  104. port: 8082
  105. targetPort: 8082
  106. resources:
  107. requests:
  108. cpu: 250m
  109. memory: 256Mi
  110. limits:
  111. cpu: 500m
  112. memory: 512Mi
  113. config:
  114. properties:
  115. spring.application.name: shop-recycle-pis
  116. spring.jpa.hibernate.ddl-auto: update
  117. spring.datasource.url: jdbc:mysql://mysql-service:3306/pisdb
  118. spring.datasource.username: root
  119. spring.datasource.password: password
  120. server.port: "8082"
  121. yml:
  122. logging:
  123. level:
  124. root: INFO
  125. management:
  126. endpoints:
  127. web:
  128. exposure:
  129. include: health,info,metrics
  130. # shop-recycle-merchant Configuration
  131. shop-recycle-merchant:
  132. enabled: true
  133. app:
  134. name: shop-recycle-merchant
  135. replicaCount: 1
  136. image:
  137. repository: your-registry/shop-recycle-merchant
  138. tag: "1.0.0"
  139. pullPolicy: IfNotPresent
  140. service:
  141. type: ClusterIP
  142. port: 8083
  143. targetPort: 8083
  144. resources:
  145. requests:
  146. cpu: 250m
  147. memory: 256Mi
  148. limits:
  149. cpu: 500m
  150. memory: 512Mi
  151. config:
  152. properties:
  153. spring.application.name: shop-recycle-merchant
  154. spring.jpa.hibernate.ddl-auto: update
  155. spring.datasource.url: jdbc:mysql://mysql-service:3306/merchantdb
  156. spring.datasource.username: root
  157. spring.datasource.password: password
  158. server.port: "8083"
  159. yml:
  160. logging:
  161. level:
  162. root: INFO
  163. management:
  164. endpoints:
  165. web:
  166. exposure:
  167. include: health,info,metrics
  168. # shop-recycle-account Configuration
  169. shop-recycle-account:
  170. enabled: true
  171. app:
  172. name: shop-recycle-account
  173. replicaCount: 1
  174. image:
  175. repository: your-registry/shop-recycle-account
  176. tag: "1.0.0"
  177. pullPolicy: IfNotPresent
  178. service:
  179. type: ClusterIP
  180. port: 8084
  181. targetPort: 8084
  182. resources:
  183. requests:
  184. cpu: 250m
  185. memory: 256Mi
  186. limits:
  187. cpu: 500m
  188. memory: 512Mi
  189. config:
  190. properties:
  191. spring.application.name: shop-recycle-account
  192. spring.jpa.hibernate.ddl-auto: update
  193. spring.datasource.url: jdbc:mysql://mysql-service:3306/accountdb
  194. spring.datasource.username: root
  195. spring.datasource.password: password
  196. server.port: "8084"
  197. yml:
  198. logging:
  199. level:
  200. root: INFO
  201. management:
  202. endpoints:
  203. web:
  204. exposure:
  205. include: health,info,metrics
  206. # shop-recycle-msg Configuration
  207. shop-recycle-msg:
  208. enabled: true
  209. app:
  210. name: shop-recycle-msg
  211. replicaCount: 1
  212. image:
  213. repository: your-registry/shop-recycle-msg
  214. tag: "1.0.0"
  215. pullPolicy: IfNotPresent
  216. service:
  217. type: ClusterIP
  218. port: 8085
  219. targetPort: 8085
  220. resources:
  221. requests:
  222. cpu: 250m
  223. memory: 256Mi
  224. limits:
  225. cpu: 500m
  226. memory: 512Mi
  227. config:
  228. properties:
  229. spring.application.name: shop-recycle-msg
  230. spring.jpa.hibernate.ddl-auto: update
  231. spring.datasource.url: jdbc:mysql://mysql-service:3306/msgdb
  232. spring.datasource.username: root
  233. spring.datasource.password: password
  234. server.port: "8085"
  235. yml:
  236. logging:
  237. level:
  238. root: INFO
  239. management:
  240. endpoints:
  241. web:
  242. exposure:
  243. include: health,info,metrics
  244. # shop-recycle-order-center Configuration
  245. shop-recycle-order-center:
  246. enabled: true
  247. app:
  248. name: shop-recycle-order-center
  249. replicaCount: 1
  250. image:
  251. repository: your-registry/shop-recycle-order-center
  252. tag: "1.0.0"
  253. pullPolicy: IfNotPresent
  254. service:
  255. type: ClusterIP
  256. port: 8086
  257. targetPort: 8086
  258. resources:
  259. requests:
  260. cpu: 250m
  261. memory: 256Mi
  262. limits:
  263. cpu: 500m
  264. memory: 512Mi
  265. config:
  266. properties:
  267. spring.application.name: shop-recycle-order-center
  268. spring.jpa.hibernate.ddl-auto: update
  269. spring.datasource.url: jdbc:mysql://mysql-service:3306/order-centerdb
  270. spring.datasource.username: root
  271. spring.datasource.password: password
  272. server.port: "8086"
  273. yml:
  274. logging:
  275. level:
  276. root: INFO
  277. management:
  278. endpoints:
  279. web:
  280. exposure:
  281. include: health,info,metrics
  282. # shop-recycle-wechat Configuration
  283. shop-recycle-wechat:
  284. enabled: true
  285. app:
  286. name: shop-recycle-wechat
  287. replicaCount: 1
  288. image:
  289. repository: your-registry/shop-recycle-wechat
  290. tag: "1.0.0"
  291. pullPolicy: IfNotPresent
  292. service:
  293. type: ClusterIP
  294. port: 8087
  295. targetPort: 8087
  296. resources:
  297. requests:
  298. cpu: 250m
  299. memory: 256Mi
  300. limits:
  301. cpu: 500m
  302. memory: 512Mi
  303. config:
  304. properties:
  305. spring.application.name: shop-recycle-wechat
  306. spring.jpa.hibernate.ddl-auto: update
  307. spring.datasource.url: jdbc:mysql://mysql-service:3306/wechatdb
  308. spring.datasource.username: root
  309. spring.datasource.password: password
  310. server.port: "8087"
  311. yml:
  312. logging:
  313. level:
  314. root: INFO
  315. management:
  316. endpoints:
  317. web:
  318. exposure:
  319. include: health,info,metrics
  320. # shop-recycle-data-statistics Configuration
  321. shop-recycle-data-statistics:
  322. enabled: true
  323. app:
  324. name: shop-recycle-data-statistics
  325. replicaCount: 1
  326. image:
  327. repository: your-registry/shop-recycle-data-statistics
  328. tag: "1.0.0"
  329. pullPolicy: IfNotPresent
  330. service:
  331. type: ClusterIP
  332. port: 8088
  333. targetPort: 8088
  334. resources:
  335. requests:
  336. cpu: 250m
  337. memory: 256Mi
  338. limits:
  339. cpu: 500m
  340. memory: 512Mi
  341. config:
  342. properties:
  343. spring.application.name: shop-recycle-data-statistics
  344. spring.jpa.hibernate.ddl-auto: update
  345. spring.datasource.url: jdbc:mysql://mysql-service:3306/data-statisticsdb
  346. spring.datasource.username: root
  347. spring.datasource.password: password
  348. server.port: "8088"
  349. yml:
  350. logging:
  351. level:
  352. root: INFO
  353. management:
  354. endpoints:
  355. web:
  356. exposure:
  357. include: health,info,metrics
  358. # shop-recycle-platform Configuration
  359. shop-recycle-platform:
  360. enabled: true
  361. app:
  362. name: shop-recycle-platform
  363. replicaCount: 1
  364. image:
  365. repository: your-registry/shop-recycle-platform
  366. tag: "1.0.0"
  367. pullPolicy: IfNotPresent
  368. service:
  369. type: ClusterIP
  370. port: 8089
  371. targetPort: 8089
  372. resources:
  373. requests:
  374. cpu: 250m
  375. memory: 256Mi
  376. limits:
  377. cpu: 500m
  378. memory: 512Mi
  379. config:
  380. properties:
  381. spring.application.name: shop-recycle-platform
  382. spring.jpa.hibernate.ddl-auto: update
  383. spring.datasource.url: jdbc:mysql://mysql-service:3306/platformdb
  384. spring.datasource.username: root
  385. spring.datasource.password: password
  386. server.port: "8089"
  387. yml:
  388. logging:
  389. level:
  390. root: INFO
  391. management:
  392. endpoints:
  393. web:
  394. exposure:
  395. include: health,info,metrics
  396. # shop-recycle-wechat-web Configuration
  397. shop-recycle-wechat-web:
  398. enabled: true
  399. app:
  400. name: shop-recycle-wechat-web
  401. replicaCount: 1
  402. image:
  403. repository: your-registry/shop-recycle-wechat-web
  404. tag: "1.0.0"
  405. pullPolicy: IfNotPresent
  406. service:
  407. type: ClusterIP
  408. port: 8090
  409. targetPort: 8090
  410. resources:
  411. requests:
  412. cpu: 250m
  413. memory: 256Mi
  414. limits:
  415. cpu: 500m
  416. memory: 512Mi
  417. config:
  418. properties:
  419. spring.application.name: shop-recycle-wechat-web
  420. spring.jpa.hibernate.ddl-auto: update
  421. spring.datasource.url: jdbc:mysql://mysql-service:3306/wechat-webdb
  422. spring.datasource.username: root
  423. spring.datasource.password: password
  424. server.port: "8090"
  425. yml:
  426. logging:
  427. level:
  428. root: INFO
  429. management:
  430. endpoints:
  431. web:
  432. exposure:
  433. include: health,info,metrics
  434. # shop-recycle-payment-web Configuration
  435. shop-recycle-payment-web:
  436. enabled: true
  437. app:
  438. name: shop-recycle-payment-web
  439. replicaCount: 1
  440. image:
  441. repository: your-registry/shop-recycle-payment-web
  442. tag: "1.0.0"
  443. pullPolicy: IfNotPresent
  444. service:
  445. type: ClusterIP
  446. port: 8091
  447. targetPort: 8091
  448. resources:
  449. requests:
  450. cpu: 250m
  451. memory: 256Mi
  452. limits:
  453. cpu: 500m
  454. memory: 512Mi
  455. config:
  456. properties:
  457. spring.application.name: shop-recycle-payment-web
  458. spring.jpa.hibernate.ddl-auto: update
  459. spring.datasource.url: jdbc:mysql://mysql-service:3306/payment-webdb
  460. spring.datasource.username: root
  461. spring.datasource.password: password
  462. server.port: "8091"
  463. yml:
  464. logging:
  465. level:
  466. root: INFO
  467. management:
  468. endpoints:
  469. web:
  470. exposure:
  471. include: health,info,metrics
  472. # shop-recycle-store-wechat-web Configuration
  473. shop-recycle-store-wechat-web:
  474. enabled: true
  475. app:
  476. name: shop-recycle-store-wechat-web
  477. replicaCount: 1
  478. image:
  479. repository: your-registry/shop-recycle-store-wechat-web
  480. tag: "1.0.0"
  481. pullPolicy: IfNotPresent
  482. service:
  483. type: ClusterIP
  484. port: 8092
  485. targetPort: 8092
  486. resources:
  487. requests:
  488. cpu: 250m
  489. memory: 256Mi
  490. limits:
  491. cpu: 500m
  492. memory: 512Mi
  493. config:
  494. properties:
  495. spring.application.name: shop-recycle-store-wechat-web
  496. spring.jpa.hibernate.ddl-auto: update
  497. spring.datasource.url: jdbc:mysql://mysql-service:3306/store-wechat-webdb
  498. spring.datasource.username: root
  499. spring.datasource.password: password
  500. server.port: "8092"
  501. yml:
  502. logging:
  503. level:
  504. root: INFO
  505. management:
  506. endpoints:
  507. web:
  508. exposure:
  509. include: health,info,metrics
  510. # shop-recycle-platform-pc-web Configuration
  511. shop-recycle-platform-pc-web:
  512. enabled: true
  513. app:
  514. name: shop-recycle-platform-pc-web
  515. replicaCount: 1
  516. image:
  517. repository: your-registry/shop-recycle-platform-pc-web
  518. tag: "1.0.0"
  519. pullPolicy: IfNotPresent
  520. service:
  521. type: ClusterIP
  522. port: 8093
  523. targetPort: 8093
  524. resources:
  525. requests:
  526. cpu: 250m
  527. memory: 256Mi
  528. limits:
  529. cpu: 500m
  530. memory: 512Mi
  531. config:
  532. properties:
  533. spring.application.name: shop-recycle-platform-pc-web
  534. spring.jpa.hibernate.ddl-auto: update
  535. spring.datasource.url: jdbc:mysql://mysql-service:3306/platform-pc-webdb
  536. spring.datasource.username: root
  537. spring.datasource.password: password
  538. server.port: "8093"
  539. yml:
  540. logging:
  541. level:
  542. root: INFO
  543. management:
  544. endpoints:
  545. web:
  546. exposure:
  547. include: health,info,metrics
  548. # shop-recycle-out-web Configuration
  549. shop-recycle-out-web:
  550. enabled: true
  551. app:
  552. name: shop-recycle-out-web
  553. replicaCount: 1
  554. image:
  555. repository: your-registry/shop-recycle-out-web
  556. tag: "1.0.0"
  557. pullPolicy: IfNotPresent
  558. service:
  559. type: ClusterIP
  560. port: 8094
  561. targetPort: 8094
  562. resources:
  563. requests:
  564. cpu: 250m
  565. memory: 256Mi
  566. limits:
  567. cpu: 500m
  568. memory: 512Mi
  569. config:
  570. properties:
  571. spring.application.name: shop-recycle-out-web
  572. spring.jpa.hibernate.ddl-auto: update
  573. spring.datasource.url: jdbc:mysql://mysql-service:3306/out-webdb
  574. spring.datasource.username: root
  575. spring.datasource.password: password
  576. server.port: "8094"
  577. yml:
  578. logging:
  579. level:
  580. root: INFO
  581. management:
  582. endpoints:
  583. web:
  584. exposure:
  585. include: health,info,metrics
  586. # shop-recycle-store-pc-web Configuration
  587. shop-recycle-store-pc-web:
  588. enabled: true
  589. app:
  590. name: shop-recycle-store-pc-web
  591. replicaCount: 1
  592. image:
  593. repository: your-registry/shop-recycle-store-pc-web
  594. tag: "1.0.0"
  595. pullPolicy: IfNotPresent
  596. service:
  597. type: ClusterIP
  598. port: 8095
  599. targetPort: 8095
  600. resources:
  601. requests:
  602. cpu: 250m
  603. memory: 256Mi
  604. limits:
  605. cpu: 500m
  606. memory: 512Mi
  607. config:
  608. properties:
  609. spring.application.name: shop-recycle-store-pc-web
  610. spring.jpa.hibernate.ddl-auto: update
  611. spring.datasource.url: jdbc:mysql://mysql-service:3306/store-pc-webdb
  612. spring.datasource.username: root
  613. spring.datasource.password: password
  614. server.port: "8095"
  615. yml:
  616. logging:
  617. level:
  618. root: INFO
  619. management:
  620. endpoints:
  621. web:
  622. exposure:
  623. include: health,info,metrics
  624. # shop-recycle-login-center Configuration
  625. shop-recycle-login-center:
  626. enabled: true
  627. app:
  628. name: shop-recycle-login-center
  629. replicaCount: 1
  630. image:
  631. repository: your-registry/shop-recycle-login-center
  632. tag: "1.0.0"
  633. pullPolicy: IfNotPresent
  634. service:
  635. type: ClusterIP
  636. port: 8096
  637. targetPort: 8096
  638. resources:
  639. requests:
  640. cpu: 250m
  641. memory: 256Mi
  642. limits:
  643. cpu: 500m
  644. memory: 512Mi
  645. config:
  646. properties:
  647. spring.application.name: shop-recycle-login-center
  648. spring.jpa.hibernate.ddl-auto: update
  649. spring.datasource.url: jdbc:mysql://mysql-service:3306/login-centerdb
  650. spring.datasource.username: root
  651. spring.datasource.password: password
  652. server.port: "8096"
  653. yml:
  654. logging:
  655. level:
  656. root: INFO
  657. management:
  658. endpoints:
  659. web:
  660. exposure:
  661. include: health,info,metrics
  662. # shop-recycle-oss-web Configuration
  663. shop-recycle-oss-web:
  664. enabled: true
  665. app:
  666. name: shop-recycle-oss-web
  667. replicaCount: 1
  668. image:
  669. repository: your-registry/shop-recycle-oss-web
  670. tag: "1.0.0"
  671. pullPolicy: IfNotPresent
  672. service:
  673. type: ClusterIP
  674. port: 8097
  675. targetPort: 8097
  676. resources:
  677. requests:
  678. cpu: 250m
  679. memory: 256Mi
  680. limits:
  681. cpu: 500m
  682. memory: 512Mi
  683. config:
  684. properties:
  685. spring.application.name: shop-recycle-oss-web
  686. spring.jpa.hibernate.ddl-auto: update
  687. spring.datasource.url: jdbc:mysql://mysql-service:3306/oss-webdb
  688. spring.datasource.username: root
  689. spring.datasource.password: password
  690. server.port: "8097"
  691. yml:
  692. logging:
  693. level:
  694. root: INFO
  695. management:
  696. endpoints:
  697. web:
  698. exposure:
  699. include: health,info,metrics
  700. # shop-recycle-gateway Configuration
  701. shop-recycle-gateway:
  702. enabled: true
  703. app:
  704. name: shop-recycle-gateway
  705. replicaCount: 1
  706. image:
  707. repository: your-registry/shop-recycle-gateway
  708. tag: "1.0.0"
  709. pullPolicy: IfNotPresent
  710. service:
  711. type: ClusterIP
  712. port: 8098
  713. targetPort: 8098
  714. resources:
  715. requests:
  716. cpu: 250m
  717. memory: 256Mi
  718. limits:
  719. cpu: 500m
  720. memory: 512Mi
  721. config:
  722. properties:
  723. spring.application.name: shop-recycle-gateway
  724. spring.jpa.hibernate.ddl-auto: update
  725. spring.datasource.url: jdbc:mysql://mysql-service:3306/gatewaydb
  726. spring.datasource.username: root
  727. spring.datasource.password: password
  728. server.port: "8098"
  729. yml:
  730. logging:
  731. level:
  732. root: INFO
  733. management:
  734. endpoints:
  735. web:
  736. exposure:
  737. include: health,info,metrics
  738. # shop-recycle-sche Configuration
  739. shop-recycle-sche:
  740. enabled: true
  741. app:
  742. name: shop-recycle-sche
  743. replicaCount: 1
  744. image:
  745. repository: your-registry/shop-recycle-sche
  746. tag: "1.0.0"
  747. pullPolicy: IfNotPresent
  748. service:
  749. type: ClusterIP
  750. port: 8099
  751. targetPort: 8099
  752. resources:
  753. requests:
  754. cpu: 250m
  755. memory: 256Mi
  756. limits:
  757. cpu: 500m
  758. memory: 512Mi
  759. config:
  760. properties:
  761. spring.application.name: shop-recycle-sche
  762. spring.jpa.hibernate.ddl-auto: update
  763. spring.datasource.url: jdbc:mysql://mysql-service:3306/schedb
  764. spring.datasource.username: root
  765. spring.datasource.password: password
  766. server.port: "8099"
  767. yml:
  768. logging:
  769. level:
  770. root: INFO
  771. management:
  772. endpoints:
  773. web:
  774. exposure:
  775. include: health,info,metrics
  776. # shop-recycle-merchant-wechat-web Configuration
  777. shop-recycle-merchant-wechat-web:
  778. enabled: true
  779. app:
  780. name: shop-recycle-merchant-wechat-web
  781. replicaCount: 1
  782. image:
  783. repository: your-registry/shop-recycle-merchant-wechat-web
  784. tag: "1.0.0"
  785. pullPolicy: IfNotPresent
  786. service:
  787. type: ClusterIP
  788. port: 8100
  789. targetPort: 8100
  790. resources:
  791. requests:
  792. cpu: 250m
  793. memory: 256Mi
  794. limits:
  795. cpu: 500m
  796. memory: 512Mi
  797. config:
  798. properties:
  799. spring.application.name: shop-recycle-merchant-wechat-web
  800. spring.jpa.hibernate.ddl-auto: update
  801. spring.datasource.url: jdbc:mysql://mysql-service:3306/merchant-wechat-webdb
  802. spring.datasource.username: root
  803. spring.datasource.password: password
  804. server.port: "8100"
  805. yml:
  806. logging:
  807. level:
  808. root: INFO
  809. management:
  810. endpoints:
  811. web:
  812. exposure:
  813. include: health,info,metrics
  814. # shop-recycle-import-web Configuration
  815. shop-recycle-import-web:
  816. enabled: true
  817. app:
  818. name: shop-recycle-import-web
  819. replicaCount: 1
  820. image:
  821. repository: your-registry/shop-recycle-import-web
  822. tag: "1.0.0"
  823. pullPolicy: IfNotPresent
  824. service:
  825. type: ClusterIP
  826. port: 8101
  827. targetPort: 8101
  828. resources:
  829. requests:
  830. cpu: 250m
  831. memory: 256Mi
  832. limits:
  833. cpu: 500m
  834. memory: 512Mi
  835. config:
  836. properties:
  837. spring.application.name: shop-recycle-import-web
  838. spring.jpa.hibernate.ddl-auto: update
  839. spring.datasource.url: jdbc:mysql://mysql-service:3306/import-webdb
  840. spring.datasource.username: root
  841. spring.datasource.password: password
  842. server.port: "8101"
  843. yml:
  844. logging:
  845. level:
  846. root: INFO
  847. management:
  848. endpoints:
  849. web:
  850. exposure:
  851. include: health,info,metrics
  852. # shop-recycle-marketer-pc-web Configuration
  853. shop-recycle-marketer-pc-web:
  854. enabled: true
  855. app:
  856. name: shop-recycle-marketer-pc-web
  857. replicaCount: 1
  858. image:
  859. repository: your-registry/shop-recycle-marketer-pc-web
  860. tag: "1.0.0"
  861. pullPolicy: IfNotPresent
  862. service:
  863. type: ClusterIP
  864. port: 8102
  865. targetPort: 8102
  866. resources:
  867. requests:
  868. cpu: 250m
  869. memory: 256Mi
  870. limits:
  871. cpu: 500m
  872. memory: 512Mi
  873. config:
  874. properties:
  875. spring.application.name: shop-recycle-marketer-pc-web
  876. spring.jpa.hibernate.ddl-auto: update
  877. spring.datasource.url: jdbc:mysql://mysql-service:3306/marketer-pc-webdb
  878. spring.datasource.username: root
  879. spring.datasource.password: password
  880. server.port: "8102"
  881. yml:
  882. logging:
  883. level:
  884. root: INFO
  885. management:
  886. endpoints:
  887. web:
  888. exposure:
  889. include: health,info,metrics
  890. # shop-recycle-erp-pc-web Configuration
  891. shop-recycle-erp-pc-web:
  892. enabled: true
  893. app:
  894. name: shop-recycle-erp-pc-web
  895. replicaCount: 1
  896. image:
  897. repository: your-registry/shop-recycle-erp-pc-web
  898. tag: "1.0.0"
  899. pullPolicy: IfNotPresent
  900. service:
  901. type: ClusterIP
  902. port: 8103
  903. targetPort: 8103
  904. resources:
  905. requests:
  906. cpu: 250m
  907. memory: 256Mi
  908. limits:
  909. cpu: 500m
  910. memory: 512Mi
  911. config:
  912. properties:
  913. spring.application.name: shop-recycle-erp-pc-web
  914. spring.jpa.hibernate.ddl-auto: update
  915. spring.datasource.url: jdbc:mysql://mysql-service:3306/erp-pc-webdb
  916. spring.datasource.username: root
  917. spring.datasource.password: password
  918. server.port: "8103"
  919. yml:
  920. logging:
  921. level:
  922. root: INFO
  923. management:
  924. endpoints:
  925. web:
  926. exposure:
  927. include: health,info,metrics
  928. # shop-recycle-merchant-pc-web Configuration
  929. shop-recycle-merchant-pc-web:
  930. enabled: true
  931. app:
  932. name: shop-recycle-merchant-pc-web
  933. replicaCount: 1
  934. image:
  935. repository: your-registry/shop-recycle-merchant-pc-web
  936. tag: "1.0.0"
  937. pullPolicy: IfNotPresent
  938. service:
  939. type: ClusterIP
  940. port: 8104
  941. targetPort: 8104
  942. resources:
  943. requests:
  944. cpu: 250m
  945. memory: 256Mi
  946. limits:
  947. cpu: 500m
  948. memory: 512Mi
  949. config:
  950. properties:
  951. spring.application.name: shop-recycle-merchant-pc-web
  952. spring.jpa.hibernate.ddl-auto: update
  953. spring.datasource.url: jdbc:mysql://mysql-service:3306/merchant-pc-webdb
  954. spring.datasource.username: root
  955. spring.datasource.password: password
  956. server.port: "8104"
  957. yml:
  958. logging:
  959. level:
  960. root: INFO
  961. management:
  962. endpoints:
  963. web:
  964. exposure:
  965. include: health,info,metrics