github.com/replicatedcom/ship@v0.50.0/integration/init/istio-1.0.3/expected/base/charts/pilot/templates/autoscale.yaml (about)

     1  ---
     2  # Source: istio/charts/pilot/templates/autoscale.yaml
     3  
     4  apiVersion: autoscaling/v2beta1
     5  kind: HorizontalPodAutoscaler
     6  metadata:
     7      name: istio-pilot
     8      namespace: default
     9  spec:
    10      maxReplicas: 5
    11      minReplicas: 1
    12      scaleTargetRef:
    13        apiVersion: apps/v1beta1
    14        kind: Deployment
    15        name: istio-pilot
    16      metrics:
    17      - type: Resource
    18        resource:
    19          name: cpu
    20          targetAverageUtilization: 80
    21  ---