Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StorageNamespaceIndex (0.22 sec)

  1. pkg/features/kube_features.go

    	// owner: @ahutsunshine
    	// beta: v1.30
    	//
    	// Allows namespace indexer for namespace scope resources in apiserver cache to accelerate list operations.
    	StorageNamespaceIndex featuregate.Feature = "StorageNamespaceIndex"
    
    	// owner: @jsafrane
    	// kep: https://kep.k8s.io/1710
    	// alpha: v1.30
    	// Speed up container startup by mounting volumes with the correct SELinux label
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy.go

    func MatchPod(label labels.Selector, field fields.Selector) storage.SelectionPredicate {
    	var indexFields = []string{"spec.nodeName"}
    	if utilfeature.DefaultFeatureGate.Enabled(features.StorageNamespaceIndex) {
    		indexFields = append(indexFields, "metadata.namespace")
    	}
    	return storage.SelectionPredicate{
    		Label:       label,
    		Field:       field,
    		GetAttrs:    GetAttrs,
    		IndexFields: indexFields,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top