Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for resourcequotas (0.25 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. pkg/registry/core/resourcequota/storage/storage_test.go

    		resourcequota,
    		// invalid
    		&api.ResourceQuota{
    			ObjectMeta: metav1.ObjectMeta{Name: "_-a123-a_"},
    		},
    	)
    }
    
    func TestCreateSetsFields(t *testing.T) {
    	storage, _, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	ctx := genericapirequest.NewDefaultContext()
    	resourcequota := validNewResourceQuota()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. 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)
  5. releasenotes/notes/41161.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    
    issue:
      - 41159
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 11 14:04:45 UTC 2022
    - 207 bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/operator/output/operator-dump.json

                    "pods/portforward",
                    "persistentvolumeclaims",
                    "secrets",
                    "services",
                    "serviceaccounts",
                    "resourcequotas"
                ],
                "verbs": [
                    "*"
                ]
            }
        ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 01:35:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. manifests/charts/istio-operator/templates/clusterrole.yaml

      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
      verbs:
      - '*'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. pkg/registry/core/resourcequota/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &api.ResourceQuotaList{} },
    		DefaultQualifiedResource:  api.Resource("resourcequotas"),
    		SingularQualifiedResource: api.Resource("resourcequota"),
    
    		CreateStrategy:      resourcequota.Strategy,
    		UpdateStrategy:      resourcequota.Strategy,
    		DeleteStrategy:      resourcequota.Strategy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. 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)
  10. operator/cmd/mesh/testdata/operator/output/operator-init.yaml

      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
      verbs:
      - '*'
    ---
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: istio-operator
    subjects:
    - kind: ServiceAccount
      name: istio-operator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top