Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fsquota (0.4 sec)

  1. cmd/metrics-v2.go

    				Value:          float64(usage.DeleteMarkersCount),
    				VariableLabels: map[string]string{"bucket": bucket},
    			})
    
    			if quota != nil && quota.Quota > 0 {
    				metrics = append(metrics, MetricV2{
    					Description:    getBucketUsageQuotaTotalBytesMD(),
    					Value:          float64(quota.Quota),
    					VariableLabels: map[string]string{"bucket": bucket},
    				})
    			}
    			if !globalSiteReplicationSys.isEnabled() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    	// skip overwrite if local update is newer than peer update.
    	if !updatedAt.IsZero() {
    		if _, updateTm, err := globalBucketMetadataSys.GetQuotaConfig(ctx, bucket); err == nil && updateTm.After(updatedAt) {
    			return nil
    		}
    	}
    
    	if quota != nil {
    		quotaData, err := json.Marshal(quota)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

      else
        sed -i -e "s@{{ *pillar\.get('storage_backend', '\(.*\)') *}}@\1@g" "${temp_file}"
      fi
      if [[ "${STORAGE_BACKEND:-${default_storage_backend}}" == "etcd3" ]]; then
        sed -i -e "s@{{ *quota_bytes *}}@--quota-backend-bytes=${ETCD_QUOTA_BACKEND_BYTES:-4294967296}@g" "${temp_file}"
      else
        sed -i -e "s@{{ *quota_bytes *}}@@g" "${temp_file}"
      fi
      sed -i -e "s@{{ *cluster_state *}}@$cluster_state@g" "${temp_file}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    			}
    		}
    
    		if len(nodeMap) != 0 {
    			t.Fatalf("did not find pods on nodes %+v", nodeMap)
    		}
    	}
    }
    
    // Simulate a cluster with 100 nodes, but simulate a limit (like a quota limit)
    // of 10 pods, and verify that the ds doesn't make 100 create calls per sync pass
    func TestSimpleDaemonSetPodCreateErrors(t *testing.T) {
    	for _, strategy := range updateStrategies() {
    		ds := newDaemonSet("foo")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    	if opts.bucket == "" {
    		return fmt.Errorf("bucket name is empty")
    	}
    	if opts.arn == "" {
    		return fmt.Errorf("target ARN specified for resync is empty")
    	}
    	// Check if the current bucket has quota restrictions, if not skip it
    	cfg, err := getReplicationConfig(ctx, opts.bucket)
    	if err != nil {
    		return err
    	}
    	tgtArns := cfg.FilterTargetArns(
    		replication.ObjectOpts{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

    #   MASTER_NAME
    #   NODE_INSTANCE_PREFIX
    #   WINDOWS_NODE_INSTANCE_PREFIX
    #   ZONE
    # This function tears down cluster resources 10 at a time to avoid issuing too many
    # API calls and exceeding API quota. It is important to bring down the instances before bringing
    # down the firewall rules and routes.
    function kube-down() {
      local -r batch=200
    
      detect-project
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .Values.ownerName | default "unknown" }} operator.istio.io/component: "Cni" manifests/charts/istio-cni/templates/resourcequota.yaml {{- if .Values.cni.resourceQuotas.enabled }} apiVersion: v1 kind: ResourceQuota metadata: name: istio-cni-resource-quota namespace: {{ .Release.Namespace }} spec: hard: pods: {{ .Values.cni.resourceQuotas.pods | quote }} scopeSelector: matchExpressions: - operator: In scopeName: PriorityClass values: - system-node-critical {{- end }} manifests/charts/istio-cni/templ...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top