Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for NamespaceId (0.39 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // from the kubectl CLI interface.
      optional string singularName = 6;
    
      // namespaced indicates if a resource is namespaced or not.
      optional bool namespaced = 2;
    
      // group is the preferred group of the resource.  Empty implies the group of the containing resource list.
      // For subresources, this may have a different value, for example: Scale".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// from the kubectl CLI interface.
    	SingularName string `json:"singularName" protobuf:"bytes,6,opt,name=singularName"`
    	// namespaced indicates if a resource is namespaced or not.
    	Namespaced bool `json:"namespaced" protobuf:"varint,2,opt,name=namespaced"`
    	// group is the preferred group of the resource.  Empty implies the group of the containing resource list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/types.go

    	// Required.
    	Resources []string
    
    	// scope specifies the scope of this rule.
    	// Valid values are "Cluster", "Namespaced", and "*"
    	// "Cluster" means that only cluster-scoped resources will match this rule.
    	// Namespace API objects are cluster-scoped.
    	// "Namespaced" means that only namespaced resources will match this rule.
    	// "*" means that there are no scope restrictions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// scope specifies the scope of this rule.
    	// Valid values are "Cluster", "Namespaced", and "*"
    	// "Cluster" means that only cluster-scoped resources will match this rule.
    	// Namespace API objects are cluster-scoped.
    	// "Namespaced" means that only namespaced resources will match this rule.
    	// "*" means that there are no scope restrictions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    metadata:
      name: foos.tests.example.com
    spec:
      group: tests.example.com
      version: v1beta1
      names:
        plural: foos
        singular: foo
        kind: Foo
        listKind: Foolist
      scope: Namespaced
      validation:
        openAPIV3Schema:
          type: object
          properties:
            a: {}
      versions:
      - name: v1beta1
        served: true
        storage: true
    `
    
    	// decode CRD manifest
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      repeated string resources = 3;
    
      // scope specifies the scope of this rule.
      // Valid values are "Cluster", "Namespaced", and "*"
      // "Cluster" means that only cluster-scoped resources will match this rule.
      // Namespace API objects are cluster-scoped.
      // "Namespaced" means that only namespaced resources will match this rule.
      // "*" means that there are no scope restrictions.
    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. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	name := event.ObjFields["metadata.name"]
    	if len(namespace) > 0 {
    		if len(name) > 0 {
    			// namespaced watchers scoped by name
    			for _, watcher := range c.watchers.allWatchers[namespacedName{namespace: namespace, name: name}] {
    				c.watchersBuffer = append(c.watchersBuffer, watcher)
    			}
    		}
    		// namespaced watchers not scoped by name
    		for _, watcher := range c.watchers.allWatchers[namespacedName{namespace: namespace}] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    			errFn: expectNoErr,
    		},
    		"valid multiple with name indirection": {
    			args:  []string{"pods/foo", "pod/bar"},
    			errFn: expectNoErr,
    		},
    		"valid multiple with namespaced and non-namespaced types": {
    			args:  []string{"nodes/foo", "pod/bar"},
    			errFn: expectNoErr,
    		},
    		"mixed arg types": {
    			args:  []string{"pods/foo", "bar"},
    			errFn: expectErr,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		)
    		return
    	}
    
    	// if the scope in the CRD and the scope in request differ (with exception of the verbs in possiblyAcrossAllNamespacesVerbs
    	// for namespaced resources), pass request to the delegate, which is supposed to lead to a 404.
    	namespacedCRD, namespacedReq := crd.Spec.Scope == apiextensionsv1.NamespaceScoped, len(requestInfo.Namespace) > 0
    	if !namespacedCRD && namespacedReq {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "boolean"
            },
            "scope": {
              "description": "scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`.",
              "type": "string",
              "default": ""
            },
            "versions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top