Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for replica_count (0.18 sec)

  1. cmd/data-scanner.go

    	totalSize       int64
    	versions        uint64
    	deleteMarkers   uint64
    	replicatedSize  int64
    	replicatedCount int64
    	pendingSize     int64
    	failedSize      int64
    	replicaSize     int64
    	replicaCount    int64
    	pendingCount    uint64
    	failedCount     uint64
    	replTargetStats map[string]replTargetSizeSummary
    	tiers           map[string]tierStats
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/values.yaml

    defaults:
      #.Values.pilot for discovery and mesh wide config
    
      ## Discovery Settings
      pilot:
        autoscaleEnabled: true
        autoscaleMin: 1
        autoscaleMax: 5
        autoscaleBehavior: {}
        replicaCount: 1
        rollingMaxSurge: 100%
        rollingMaxUnavailable: 25%
        hub: ""
        tag: ""
        variant: ""
        # Can be a full hub/image:tag
        image: pilot
        traceSampling: 1.0
        # Resources for a small pilot install
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Port Configuration for the ingress gateway.
      repeated PortsConfig ports = 23;
    
      // Number of replicas for the ingress gateway Deployment.
      uint32 replicaCount = 24 [deprecated = true];
    
      // K8s resources settings.
      //
      // See https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/#resource-requests-and-limits-of-pod-and-container
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Number of replicas for the ingress gateway Deployment.
    	//
    	// Deprecated: Marked as deprecated in pkg/apis/istio/v1alpha1/values_types.proto.
    	ReplicaCount uint32 `protobuf:"varint,24,opt,name=replicaCount,proto3" json:"replicaCount,omitempty"`
    	// K8s resources settings.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    				Value:       float64(m.ReplicaSize),
    			})
    			ml = append(ml, MetricV2{
    				Description: getRepReceivedOperationsMD(clusterMetricNamespace),
    				Value:       float64(m.ReplicaCount),
    			})
    
    			for _, stat := range m.Metrics {
    				ml = append(ml, MetricV2{
    					Description:    getRepFailedBytesLastMinuteMD(clusterMetricNamespace),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .Values.revision | default "default" }} install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }} operator.istio.io/component: "IngressGateways" spec: {{- if not $gateway.autoscaleEnabled }} {{- if $gateway.replicaCount }} replicas: {{ $gateway.replicaCount }} {{- end }} {{- end }} selector: matchLabels: {{ $gateway.labels | toYaml | indent 6 }} strategy: rollingUpdate: maxSurge: {{ $gateway.rollingMaxSurge }} maxUnavailable: {{ $gateway.rollingMaxUnavailabl }} template: metadata:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    		sm.Queued.Curr.Count += peer.Queued.Curr.Count
    		if peer.Queued.Max.Count > sm.Queued.Max.Count {
    			sm.Queued.Max.Bytes = peer.Queued.Max.Bytes
    			sm.Queued.Max.Count = peer.Queued.Max.Count
    		}
    		sm.ReplicaCount += peer.ReplicaCount
    		sm.ReplicaSize += peer.ReplicaSize
    		sm.Proxied.Add(madmin.ReplProxyMetric(peer.Proxied))
    		for dID, v := range peer.Metrics {
    			v2, ok := sm.Metrics[dID]
    			if !ok {
    				v2 = madmin.SRMetric{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
Back to top