# Production overrides for the `orders` chart. Deliberately exercises all three merge behaviours:
#   - `image` and `resources` MERGE key by key with the defaults
#   - `env` REPLACES the default list wholesale; the default entries do not survive
#   - `podAnnotations` is set to null, which DELETES the inherited map
replicaCount: 6

image:
  tag: "1.4.0"
  pullPolicy: Always

resources:
  limits:
    cpu: "2"
    memory: 2Gi

autoscaling:
  enabled: true
  minReplicas: 6
  maxReplicas: 30

env:
  - name: LOG_LEVEL
    value: warn

podAnnotations: null

metrics:
  enabled: true

nodeSelector:
  example.invalid/tier: standard
