values.yaml 825 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. app:
  2. name: payment-service
  3. replicaCount: 1
  4. image:
  5. repository: your-registry/payment-service
  6. tag: "1.0.0"
  7. pullPolicy: IfNotPresent
  8. service:
  9. type: ClusterIP
  10. port: 8082
  11. targetPort: 8082
  12. resources:
  13. requests:
  14. cpu: 250m
  15. memory: 256Mi
  16. limits:
  17. cpu: 500m
  18. memory: 512Mi
  19. config:
  20. properties:
  21. spring.application.name: payment-service
  22. spring.jpa.hibernate.ddl-auto: update
  23. spring.datasource.url: jdbc:mysql://mysql-service:3306/paymentdb
  24. spring.datasource.username: root
  25. spring.datasource.password: password
  26. server.port: "8082"
  27. yml:
  28. logging:
  29. level:
  30. root: INFO
  31. management:
  32. endpoints:
  33. web:
  34. exposure:
  35. include: health,info,metrics
  36. podAnnotations: {}
  37. securityContext: {}
  38. nodeSelector: {}
  39. tolerations: []
  40. affinity: {}