# Default values for the `orders` chart. Merged with an overrides file at install time, so this
# pair is the canonical fixture for deep-merge semantics: maps merge key by key, lists replace
# wholesale, and an explicit `null` deletes an inherited key.
replicaCount: 2

image:
  repository: registry.example.invalid/example-org/orders
  tag: ""
  pullPolicy: IfNotPresent

service:
  type: ClusterIP
  port: 80

resources:
  requests:
    cpu: 100m
    memory: 128Mi
  limits:
    cpu: 500m
    memory: 512Mi

autoscaling:
  enabled: false
  minReplicas: 2
  maxReplicas: 10
  targetCPUUtilizationPercentage: 70

nodeSelector: {}
tolerations: []

env:
  - name: LOG_LEVEL
    value: info
  - name: FEATURE_CHECKOUT_V2
    value: "true"

cache:
  enabled: true
metrics:
  enabled: false

podAnnotations:
  example.invalid/scrape: "false"
