| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- # ==========================================
- # Helm Values - shop-recycle (TEST环境)
- # 测试环境配置
- # ==========================================
- environment: test
- replicaCount: 2
- gateway:
- replicaCount: 2
-
- resources:
- requests:
- memory: "256Mi"
- cpu: "250m"
- limits:
- memory: "512Mi"
- cpu: "500m"
-
- javaOpts: "-Xms256m -Xmx512m -XX:+UseG1GC"
-
- ingress:
- enabled: true
- className: "nginx"
- annotations:
- cert-manager.io/cluster-issuer: "letsencrypt-staging"
- nginx.ingress.kubernetes.io/ssl-redirect: "false"
- hosts:
- - host: "test-gateway.local"
- paths:
- - path: /
- pathType: Prefix
- tls: []
- orderService:
- replicaCount: 2
-
- resources:
- requests:
- memory: "256Mi"
- cpu: "250m"
- limits:
- memory: "512Mi"
- cpu: "500m"
- paymentService:
- replicaCount: 2
-
- resources:
- requests:
- memory: "256Mi"
- cpu: "250m"
- limits:
- memory: "512Mi"
- cpu: "500m"
- # 启用网络策略
- networkPolicy:
- enabled: false
- monitoring:
- enabled: true
- serviceMonitor:
- enabled: false
- logging:
- level: INFO
|