Kubernetes Infrastructure

Pod status across all namespaces · Refresh: 5s

NameNamespaceStatusReadyCPUMemoryRestartsNodeAge

Horizontal Pod Autoscaler — order-router

apiVersion: autoscaling/v2
kind: HorizontalPodAutoscaler
metadata:
  name: order-router-hpa
  namespace: trading
spec:
  scaleTargetRef:
    apiVersion: apps/v1
    kind: Deployment
    name: order-router
  minReplicas: 3
  maxReplicas: 12
  metrics:
  - type: Resource
    resource:
      name: cpu
      target:
        type: Utilization
        averageUtilization: 70
  - type: Resource
    resource:
      name: memory
      target:
        type: Utilization
        averageUtilization: 80