Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 219 for NamespaceId (0.34 sec)

  1. common/scripts/metallb-native.yaml

      creationTimestamp: null
      name: bfdprofiles.metallb.io
    spec:
      group: metallb.io
      names:
        kind: BFDProfile
        listKind: BFDProfileList
        plural: bfdprofiles
        singular: bfdprofile
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - jsonPath: .spec.passiveMode
          name: Passive Mode
          type: boolean
        - jsonPath: .spec.transmitInterval
          name: Transmit Interval
          type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.6
    
    // 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: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1beta1/types.go

    	// NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path
    	// Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding.
    	// Rules can either apply to API resources (such as "pods" or "secrets") or non-resource URL paths (such as "/api"),  but not both.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    			if status.Name != "noxus/status" {
    				t.Fatalf("incorrect status via discovery: expected name: %v, got: %v", "noxus/status", status.Name)
    			}
    
    			if status.Namespaced != true {
    				t.Fatalf("incorrect status via discovery: expected namespace: %v, got: %v", true, status.Namespaced)
    			}
    
    			if status.Kind != "WishIHadChosenNoxu" {
    				t.Fatalf("incorrect status via discovery: expected kind: %v, got: %v", "WishIHadChosenNoxu", status.Kind)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top