| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- app:
- name: order-service
- replicaCount: 1
- image:
- repository: your-registry/order-service
- tag: "1.0.0"
- pullPolicy: IfNotPresent
- service:
- type: ClusterIP
- port: 8081
- targetPort: 8081
- resources:
- requests:
- cpu: 250m
- memory: 256Mi
- limits:
- cpu: 500m
- memory: 512Mi
- config:
- properties:
- spring.application.name: order-service
- spring.jpa.hibernate.ddl-auto: update
- spring.datasource.url: jdbc:mysql://mysql-service:3306/orderdb
- spring.datasource.username: root
- spring.datasource.password: password
- server.port: "8081"
- yml:
- logging:
- level:
- root: INFO
- management:
- endpoints:
- web:
- exposure:
- include: health,info,metrics
- podAnnotations: {}
- securityContext: {}
- nodeSelector: {}
- tolerations: []
- affinity: {}
|