Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 267 for NamespaceId (0.24 sec)

  1. staging/src/k8s.io/api/storage/v1alpha1/types.go

    // VolumeAttachment captures the intent to attach or detach the specified volume
    // to/from the specified node.
    //
    // VolumeAttachment objects are non-namespaced.
    type VolumeAttachment struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "default": "",
                "description": "name is the plural name of the resource.",
                "type": "string"
              },
              "namespaced": {
                "default": false,
                "description": "namespaced indicates if a resource is namespaced or not.",
                "type": "boolean"
              },
              "shortNames": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	namespacedRequestObject := newParam("some param", nonMatchingNamespace, nil)
    	clusterScopedRequestObject := newClusterScopedParam("other param", nil)
    
    	// Validate a namespaced object, and verify that the params being validated
    	// are the ones we would expect
    	timeoutCtx, timeoutCancel := context.WithTimeout(testContext, 5*time.Second)
    	defer timeoutCancel()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/deployment-multi-service.yaml

    apiVersion: v1
    kind: Namespace
    metadata:
      name: injection-disabled-ns
    spec: {}
    ---
    # Deployment has multiple service attached but using same port but different protocol.
    # Sidecar is enabled although the namespaced doesn't have automatic injection.
    # It should generate a warning.
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ann-enabled-ns-disabled
      namespace: injection-disabled-ns
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/types.go

    // StorageClass describes the parameters for a class of storage for
    // which PersistentVolumes can be dynamically provisioned.
    //
    // StorageClasses are non-namespaced; the name of the storage class
    // according to etcd is in ObjectMeta.Name.
    type StorageClass struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  6. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  7. pkg/config/crd/validator.go

    	defer iv.mu.Unlock()
    	if iv.patternsByNamespace[namespace] == nil {
    		iv.patternsByNamespace[namespace] = sets.String{}
    	}
    	iv.patternsByNamespace[namespace].Insert(pattern)
    }
    
    // ShouldIgnore checks if a given namespaced name should be ignored based on the patterns.
    func (iv *ValidationIgnorer) ShouldIgnore(namespace, name string) bool {
    	iv.mu.RLock()
    	defer iv.mu.RUnlock()
    
    	patterns, exists := iv.patternsByNamespace[namespace]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. pkg/controller/storageversionmigrator/resourceversion.go

    	if err != nil {
    		return false, err
    	}
    
    	for _, resource := range resourceList.APIResources {
    		if resource.Name == gvr.Resource {
    			return resource.Namespaced, nil
    		}
    	}
    
    	return false, fmt.Errorf("resource %q not found", gvr.String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      optional .k8s.io.apimachinery.pkg.apis.meta.v1.GroupVersionKind responseKind = 2;
    
      // scope indicates the scope of a resource, either Cluster or Namespaced
      optional string scope = 3;
    
      // singularResource is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"name":               "name is the plural name of the resource.",
    	"singularName":       "singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
Back to top