Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 96 for scaleTargetRef (0.21 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/autoscale.yaml

        operator.istio.io/component: "Pilot"
    spec:
      maxReplicas: {{ .Values.pilot.autoscaleMax }}
      minReplicas: {{ .Values.pilot.autoscaleMin }}
      scaleTargetRef:
        apiVersion: apps/v1
        kind: Deployment
        name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      metrics:
      - type: Resource
        resource:
          name: cpu
          target:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/testdata/quantity.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      namespace: istio-system
      name: example-istiocontrolplane
    spec:
      profile: demo
      components:
        pilot:
          k8s:
            hpaSpec:
              scaleTargetRef:
                apiVersion: apps/v1
                kind: Deployment
                name: istiod
              minReplicas: 1
              maxReplicas: 5
              metrics:
              - type: Resource
                resource:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 05 23:34:13 UTC 2022
    - 549 bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/deepcopy_test.go

    kind: IstioOperator
    metadata:
      namespace: istio-system
      name: example-istiocontrolplane
    spec:
      profile: demo
      components:
        pilot:
          k8s:
            hpaSpec:
              scaleTargetRef:
                apiVersion: apps/v1
                kind: Deployment
                name: istiod
              minReplicas: 1
              maxReplicas: 5
              metrics:
              - type: Resource
                resource:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 05 23:34:13 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/input/pilot_k8s_settings.yaml

                    fieldPath: new.path
              - name: GODEBUG
                value: gctrace=111
              - name: NEW_VAR
                value: new_value
            hpaSpec:
              maxReplicas: 333
              scaleTargetRef:
                name: istio-pilot
              metrics:
                - type: Resource
                  resource:
                    name: cpu
                    target:
                      type: Utilization
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/autoscaling.v1.HorizontalPodAutoscaler.yaml

        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      maxReplicas: 3
      minReplicas: 2
      scaleTargetRef:
        apiVersion: apiVersionValue
        kind: kindValue
        name: nameValue
      targetCPUUtilizationPercentage: 4
    status:
      currentCPUUtilizationPercentage: 5
      currentReplicas: 3
      desiredReplicas: 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/autoscaling.v1.HorizontalPodAutoscaler.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "scaleTargetRef": {
          "kind": "kindValue",
          "name": "nameValue",
          "apiVersion": "apiVersionValue"
        },
        "minReplicas": 2,
        "maxReplicas": 3,
        "targetCPUUtilizationPercentage": 4
      },
      "status": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/autoscaling.v1.HorizontalPodAutoscaler.json

            "time": "2004-01-01T01:01:01Z",
            "fieldsType": "fieldsTypeValue",
            "fieldsV1": {},
            "subresource": "subresourceValue"
          }
        ]
      },
      "spec": {
        "scaleTargetRef": {
          "kind": "kindValue",
          "name": "nameValue",
          "apiVersion": "apiVersionValue"
        },
        "minReplicas": 2,
        "maxReplicas": 3,
        "targetCPUUtilizationPercentage": 4
      },
      "status": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/templates/autoscale.yaml

        operator.istio.io/component: "EgressGateways"
    spec:
      maxReplicas: {{ $gateway.autoscaleMax }}
      minReplicas: {{ $gateway.autoscaleMin }}
      scaleTargetRef:
        apiVersion: apps/v1
        kind: Deployment
        name: {{ $gateway.name }}
      metrics:
      - type: Resource
        resource:
          name: cpu
          target:
            type: Utilization
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 949 bytes
    - Viewed (0)
  9. manifests/charts/gateway/templates/hpa.yaml

    metadata:
      name: {{ include "gateway.name" . }}
      namespace: {{ .Release.Namespace }}
      labels:
        {{- include "gateway.labels" . | nindent 4 }}
      annotations:
        {{- .Values.annotations | toYaml | nindent 4 }}
    spec:
      scaleTargetRef:
        apiVersion: apps/v1
        kind: {{ .Values.kind | default "Deployment" }}
        name: {{ include "gateway.name" . }}
      minReplicas: {{ .Values.autoscaling.minReplicas }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 05:44:12 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/autoscaling.v1.HorizontalPodAutoscaler.yaml

        controller: true
        kind: kindValue
        name: nameValue
        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      maxReplicas: 3
      minReplicas: 2
      scaleTargetRef:
        apiVersion: apiVersionValue
        kind: kindValue
        name: nameValue
      targetCPUUtilizationPercentage: 4
    status:
      currentCPUUtilizationPercentage: 5
      currentReplicas: 3
      desiredReplicas: 4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top