| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- # Production Environment Configuration
- # Override values for production environment
- global:
- labels:
- environment: production
- user-service:
- enabled: true
- app:
- replicaCount: 3
- image:
- tag: "1.0.0" # Use specific version tags in production
- resources:
- requests:
- cpu: 500m
- memory: 512Mi
- limits:
- cpu: 1000m
- memory: 1024Mi
- config:
- properties:
- spring.jpa.hibernate.ddl-auto: validate
- spring.datasource.url: jdbc:mysql://mysql-prod:3306/userdb
- yml:
- logging:
- level:
- root: WARN
- management:
- endpoints:
- web:
- exposure:
- include: health,metrics
- order-service:
- enabled: true
- app:
- replicaCount: 3
- image:
- tag: "1.0.0"
- resources:
- requests:
- cpu: 500m
- memory: 512Mi
- limits:
- cpu: 1000m
- memory: 1024Mi
- config:
- properties:
- spring.jpa.hibernate.ddl-auto: validate
- spring.datasource.url: jdbc:mysql://mysql-prod:3306/orderdb
- yml:
- logging:
- level:
- root: WARN
- management:
- endpoints:
- web:
- exposure:
- include: health,metrics
- payment-service:
- enabled: true
- app:
- replicaCount: 3
- image:
- tag: "1.0.0"
- resources:
- requests:
- cpu: 500m
- memory: 512Mi
- limits:
- cpu: 1000m
- memory: 1024Mi
- config:
- properties:
- spring.jpa.hibernate.ddl-auto: validate
- spring.datasource.url: jdbc:mysql://mysql-prod:3306/paymentdb
- yml:
- logging:
- level:
- root: WARN
- management:
- endpoints:
- web:
- exposure:
- include: health,metrics
|