Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 264 for ResourceNames (0.37 sec)

  1. 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)
  2. pilot/pkg/networking/grpcgen/grpcgen_test.go

    			t.Fatal("Missing expected cookie path", sc.Cookie)
    		}
    		clusterName := "outbound|9999||echo-persistent.test.svc.cluster.local"
    		adscConn.Send(&discovery.DiscoveryRequest{
    			TypeUrl:       v3.EndpointType,
    			ResourceNames: []string{clusterName},
    		})
    		_, err = adscConn.Wait(5*time.Second, v3.EndpointType)
    		if err != nil {
    			t.Fatal("Failed to receive endpoint", err)
    		}
    		ep := adscConn.GetEndpoints()[clusterName]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    func (b *Builder) ResourceTypes(types ...string) *Builder {
    	b.resources = append(b.resources, types...)
    	return b
    }
    
    // ResourceNames accepts a default type and one or more names, and creates tuples of
    // resources
    func (b *Builder) ResourceNames(resource string, names ...string) *Builder {
    	for _, name := range names {
    		// See if this input string is of type/name format
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/auth/authorizer/abac/abac_test.go

    	for i, info := range infos {
    		rules[i] = authorizer.DefaultResourceRuleInfo{
    			Verbs:         info.GetVerbs(),
    			APIGroups:     info.GetAPIGroups(),
    			Resources:     info.GetResources(),
    			ResourceNames: info.GetResourceNames(),
    		}
    	}
    	return rules
    }
    
    func getNonResourceRules(infos []authorizer.NonResourceRuleInfo) []authorizer.DefaultNonResourceRuleInfo {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 40K bytes
    - Viewed (0)
Back to top