Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for resourcequotas (0.16 sec)

  1. manifests/charts/istio-cni/templates/resourcequota.yaml

    {{- if .Values.cni.resourceQuotas.enabled }}
    apiVersion: v1
    kind: ResourceQuota
    metadata:
      name: {{ template "name" . }}-resource-quota
      namespace: {{ .Release.Namespace }}
    spec:
      hard:
        pods: {{ .Values.cni.resourceQuotas.pods | quote }}
      scopeSelector:
        matchExpressions:
        - operator: In
          scopeName: PriorityClass
          values:
          - system-node-critical
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 388 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access_test.go

    			cacheInput:    []*corev1.ResourceQuota{resourceQuota},
    			clientInput:   []runtime.Object{resourceQuota},
    			ttl:           -30 * time.Second,
    			namespace:     namespace,
    			expectedQuota: resourceQuota,
    		},
    		{
    			description:   "object does not exist in cache and is not found with client",
    			cacheInput:    []*corev1.ResourceQuota{resourceQuota},
    			ttl:           30 * time.Second,
    			expectedQuota: nil,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    			items = append(items, lruEntry.items[i])
    		}
    	}
    
    	resourceQuotas := []corev1.ResourceQuota{}
    	for i := range items {
    		quota := items[i]
    		quota = e.checkCache(quota)
    		// always make a copy.  We're going to muck around with this and we should never mutate the originals
    		resourceQuotas = append(resourceQuotas, *quota)
    	}
    
    	return resourceQuotas, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/controlplane/storageversionhashdata/data.go

    	"v1/persistentvolumes":      "HN/zwEC+JgM=",
    	"v1/pods":                   "xPOwRZ+Yhw8=",
    	"v1/podtemplates":           "LIXB2x4IFpk=",
    	"v1/replicationcontrollers": "Jond2If31h0=",
    	"v1/resourcequotas":         "8uhSgffRX6w=",
    	"v1/secrets":                "S6u1pOWzb84=",
    	"v1/serviceaccounts":        "pbx9ZvyFpBE=",
    	"v1/services":               "0/CO1lhkEBI=",
    	"autoscaling/v1/horizontalpodautoscalers": "qwQve8ut294=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/values.yaml

        # Set to `type: RuntimeDefault` to use the default profile if available.
        seccompProfile: {}
    
        resources:
          requests:
            cpu: 100m
            memory: 100Mi
    
        resourceQuotas:
          enabled: false
          pods: 5000
    
        # The number of pods that can be unavailable during rolling update (see
        # `updateStrategy.rollingUpdate.maxUnavailable` here:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ResourceQuota.yaml

    apiVersion: v1
    kind: ResourceQuota
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
      - apiVersion: apiVersionValue
        fieldsType: fieldsTypeValue
        fieldsV1: {}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ResourceQuota.json

    {
      "kind": "ResourceQuota",
      "apiVersion": "v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.ResourceQuota.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 500 bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/plugins.go

    	// new admission plugins should generally be inserted above here
    	// webhook, resourcequota, and deny plugins must go at the end
    
    	mutatingwebhook.PluginName,           // MutatingAdmissionWebhook
    	validatingadmissionpolicy.PluginName, // ValidatingAdmissionPolicy
    	validatingwebhook.PluginName,         // ValidatingAdmissionWebhook
    	resourcequota.PluginName,             // ResourceQuota
    	deny.PluginName,                      // AlwaysDeny
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. hack/make-rules/test-cmd.sh

      # Start kube-apiserver
      kube::log::status "Starting kube-apiserver"
    
      # Admission Controllers to invoke prior to persisting objects in cluster
      ENABLE_ADMISSION_PLUGINS="LimitRanger,ResourceQuota"
      DISABLE_ADMISSION_PLUGINS="ServiceAccount,DefaultStorageClass,DefaultTolerationSeconds,MutatingAdmissionWebhook,ValidatingAdmissionWebhook,StorageObjectInUseProtection"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top