Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for rollingMaxSurge (0.53 sec)

  1. operator/pkg/translate/translate_value_test.go

    	tests := []struct {
    		desc      string
    		valueYAML string
    		want      string
    		wantErr   string
    	}{
    		{
    			desc: "K8s resources translation",
    			valueYAML: `
    pilot:
      enabled: true
      rollingMaxSurge: 100%
      rollingMaxUnavailable: 25%
      resources:
        requests:
          cpu: 1000m
          memory: 1G
      replicaCount: 1
      nodeSelector:
        kubernetes.io/os: linux
      tolerations:
      - key: dedicated
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-egress/templates/injected-deployment.yaml

      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | indent 6 }}
      strategy:
        rollingUpdate:
          maxSurge: {{ $gateway.rollingMaxSurge }}
          maxUnavailable: {{ $gateway.rollingMaxUnavailable }}
      template:
        metadata:
          labels:
    {{ $gateway.labels | toYaml | indent 8 }}
    {{- if eq .Release.Namespace "istio-system"}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/templates/injected-deployment.yaml

      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | indent 6 }}
      strategy:
        rollingUpdate:
          maxSurge: {{ $gateway.rollingMaxSurge }}
          maxUnavailable: {{ $gateway.rollingMaxUnavailable }}
      template:
        metadata:
          labels:
    {{ $gateway.labels | toYaml | indent 8 }}
    {{- if eq .Release.Namespace "istio-system"}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. operator/pkg/translate/translate_value.go

    			"{{.ValueComponentName}}.replicaCount":          "Components.{{.ComponentName}}.K8s.ReplicaCount",
    			"{{.ValueComponentName}}.resources":             "Components.{{.ComponentName}}.K8s.Resources",
    			"{{.ValueComponentName}}.rollingMaxSurge":       "Components.{{.ComponentName}}.K8s.Strategy",
    			"{{.ValueComponentName}}.rollingMaxUnavailable": "Components.{{.ComponentName}}.K8s.Strategy",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

    {{- if not .Values.pilot.autoscaleEnabled }}
    {{- if .Values.pilot.replicaCount }}
      replicas: {{ .Values.pilot.replicaCount }}
    {{- end }}
    {{- end }}
      strategy:
        rollingUpdate:
          maxSurge: {{ .Values.pilot.rollingMaxSurge }}
          maxUnavailable: {{ .Values.pilot.rollingMaxUnavailable }}
      selector:
        matchLabels:
          {{- if ne .Values.revision "" }}
          app: istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | indent 6 }}
      strategy:
        rollingUpdate:
          maxSurge: {{ $gateway.rollingMaxSurge }}
          maxUnavailable: {{ $gateway.rollingMaxUnavailable }}
      template:
        metadata:
          labels:
    {{ $gateway.labels | toYaml | indent 8 }}
    {{- if eq .Release.Namespace "istio-system"}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. manifests/charts/gateways/istio-egress/templates/deployment.yaml

      replicas: {{ $gateway.replicaCount }}
    {{- end }}
    {{- end }}
      selector:
        matchLabels:
    {{ $gateway.labels | toYaml | indent 6 }}
      strategy:
        rollingUpdate:
          maxSurge: {{ $gateway.rollingMaxSurge }}
          maxUnavailable: {{ $gateway.rollingMaxUnavailable }}
      template:
        metadata:
          labels:
    {{ $gateway.labels | toYaml | indent 8 }}
    {{- if eq .Release.Namespace "istio-system"}}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/values.yaml

            name: https
            targetPort: 8443
            protocol: TCP
    
          labels:
            app: istio-egressgateway
            istio: egressgateway
    
          # Scalability tuning
          # replicaCount: 1
          rollingMaxSurge: 100%
          rollingMaxUnavailable: 25%
          autoscaleEnabled: true
          autoscaleMin: 1
          autoscaleMax: 5
          resources:
            requests:
              cpu: 100m
              memory: 128Mi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/values.yaml

            name: http2
            protocol: TCP
          - port: 443
            targetPort: 8443
            name: https
            protocol: TCP
    
          # Scalability tuning
          # replicaCount: 1
          rollingMaxSurge: 100%
          rollingMaxUnavailable: 25%
          autoscaleEnabled: true
          autoscaleMin: 1
          autoscaleMax: 5
    
          cpu:
            targetAverageUtilization: 80
          memory: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    njectSelector":[],"nodeSelector":{},"objectSelector":{"autoInject":true,"enabled":false},"podAnnotations":{},"podAntiAffinityLabelSelector":[],"podAntiAffinityTermLabelSelector":[],"replicaCount":1,"resources":{},"rewriteAppHTTPProbe":false,"rollingMaxSurge":"100%","rollingMaxUnavailable":"25%","selfSigned":false,"tolerations":[]},"telemetry":{"enabled":true,"v1":{"enabled":true},"v2":{"enabled":false,"prometheus":{"enabled":true},"stackdriver":{"configOverride":{},"enabled":false,"logging":fals...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top