Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 191 for ResourceNames (0.48 sec)

  1. pkg/kubelet/cm/devicemanager/pod_devices.go

    			Name: cdiDevice.Name,
    		}
    		cdiDevices = append(cdiDevices, device)
    	}
    
    	return cdiDevices
    }
    
    // getContainerDevices returns the devices assigned to the provided container for all ResourceNames
    func (pdev *podDevices) getContainerDevices(podUID, contName string) ResourceDeviceInstances {
    	pdev.RLock()
    	defer pdev.RUnlock()
    
    	if _, podExists := pdev.devs[podUID]; !podExists {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types_swagger_doc_generated.go

    	return map_MutatingWebhookConfigurationList
    }
    
    var map_NamedRuleWithOperations = map[string]string{
    	"":              "NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.",
    	"resourceNames": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.",
    }
    
    func (NamedRuleWithOperations) SwaggerDoc() map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

    }
    
    // NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.
    // +structType=atomic
    message NamedRuleWithOperations {
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
      // +listType=atomic
      // +optional
      repeated string resourceNames = 1;
    
      // RuleWithOperations is a tuple of Operations and Resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/types.go

    	Audit ValidationAction = "Audit"
    )
    
    // NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.
    type NamedRuleWithOperations struct {
    	// ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
    	// +optional
    	ResourceNames []string
    	// RuleWithOperations is a tuple of Operations and Resources.
    	RuleWithOperations RuleWithOperations
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    }
    
    // NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.
    // +structType=atomic
    message NamedRuleWithOperations {
      // ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.
      // +listType=atomic
      // +optional
      repeated string resourceNames = 1;
    
      // RuleWithOperations is a tuple of Operations and Resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. samples/security/spire/spire-quickstart.yaml

      verbs: ["get"]
      # allow access to "get" and "patch" the spire-bundle ConfigMap (for SPIRE
      # agent bootstrapping, see the spire-bundle ConfigMap)
    - apiGroups: [""]
      resources: ["configmaps"]
      resourceNames: ["spire-bundle"]
      verbs: ["get", "patch"]
    
    ---
    # RoleBinding granting the spire-server-role to the SPIRE server
    # service account.
    kind: RoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                  "default": "",
                  "type": "string"
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "resourceNames": {
                "description": "ResourceNames is an optional white list of names that the rule applies to.  An empty set means that everything is allowed.  \"*\" means all.",
                "items": {
                  "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent_test.go

    			WithMetadata(meta).
    			WithTimeout(time.Second * 20) // CSR can be extremely slow with race detection enabled due to 2048 RSA
    		sds.RequestResponseAck(t, &discovery.DiscoveryRequest{ResourceNames: []string{res}})
    		sdsStreams[res] = sds
    		gotKeys = append(gotKeys, res)
    	}
    	if !reflect.DeepEqual(expectedSDS, gotKeys) {
    		t.Errorf("expected SDS resources %v got %v", expectedSDS, gotKeys)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/debug.go

    			Metadata:     c.proxy.Metadata,
    			Locality:     c.proxy.Locality,
    			Watches:      map[string][]string{},
    		}
    		c.proxy.RLock()
    		for k, wr := range c.proxy.WatchedResources {
    			r := wr.ResourceNames
    			if r == nil {
    				r = []string{}
    			}
    			adsClient.Watches[k] = r
    		}
    		c.proxy.RUnlock()
    		adsClients.Connected = append(adsClients.Connected, adsClient)
    	}
    	writeJSON(w, adsClients, req)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager.go

    	sourcesReady config.SourcesReady
    
    	// allDevices holds all the devices currently registered to the device manager
    	allDevices ResourceDeviceInstances
    
    	// healthyDevices contains all the registered healthy resourceNames and their exported device IDs.
    	healthyDevices map[string]sets.Set[string]
    
    	// unhealthyDevices contains all the unhealthy devices and their exported device IDs.
    	unhealthyDevices map[string]sets.Set[string]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
Back to top