github.com/replicatedcom/ship@v0.50.0/integration/init/istio/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    labels:
    10      app: pilot
    11      chart: pilot
    12      heritage: Tiller
    13      release: istio
    14  spec:
    15    maxReplicas: 5
    16    minReplicas: 1
    17    scaleTargetRef:
    18      apiVersion: apps/v1beta1
    19      kind: Deployment
    20      name: istio-pilot
    21    metrics:
    22    - type: Resource
    23      resource:
    24        name: cpu
    25        targetAverageUtilization: 80
    26  ---