Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 113 for volumeattachments (0.22 sec)

  1. api/discovery/aggregated_v2.json

                  ]
                },
                {
                  "resource": "volumeattachments",
                  "responseKind": {
                    "group": "",
                    "kind": "VolumeAttachment",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "volumeattachment",
                  "subresources": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. api/discovery/aggregated_v2beta1.json

                  ]
                },
                {
                  "resource": "volumeattachments",
                  "responseKind": {
                    "group": "",
                    "kind": "VolumeAttachment",
                    "version": ""
                  },
                  "scope": "Cluster",
                  "singularResource": "volumeattachment",
                  "subresources": [
                    {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_plugin_test.go

    	factory := informers.NewSharedInformerFactory(client, CsiResyncPeriod)
    	csiDriverInformer := factory.Storage().V1().CSIDrivers()
    	csiDriverLister := csiDriverInformer.Lister()
    	volumeAttachmentInformer := factory.Storage().V1().VolumeAttachments()
    	volumeAttachmentLister := volumeAttachmentInformer.Lister()
    
    	factory.Start(wait.NeverStop)
    	syncedTypes := factory.WaitForCacheSync(wait.NeverStop)
    	if len(syncedTypes) != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_test.go

    			factory := informers.NewSharedInformerFactory(client, time.Hour /* disable resync */)
    			csiDriverInformer := factory.Storage().V1().CSIDrivers()
    			volumeAttachmentInformer := factory.Storage().V1().VolumeAttachments()
    			if driverInfo != nil {
    				csiDriverInformer.Informer().GetStore().Add(driverInfo)
    			}
    
    			factory.Start(wait.NeverStop)
    			factory.WaitForCacheSync(wait.NeverStop)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/node_authorizer.go

    	pvResource            = api.Resource("persistentvolumes")
    	resourceClaimResource = resourceapi.Resource("resourceclaims")
    	vaResource            = storageapi.Resource("volumeattachments")
    	svcAcctResource       = api.Resource("serviceaccounts")
    	leaseResource         = coordapi.Resource("leases")
    	csiNodeResource       = storageapi.Resource("csinodes")
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"status":   "status represents status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.",
    }
    
    func (VolumeAttachment) SwaggerDoc() map[string]string {
    	return map_VolumeAttachment
    }
    
    var map_VolumeAttachmentList = map[string]string{
    	"":         "VolumeAttachmentList is a collection of VolumeAttachment objects.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        resources:
        - leases
        verbs:
        - create
        - delete
        - get
        - patch
        - update
      - apiGroups:
        - storage.k8s.io
        resources:
        - volumeattachments
        verbs:
        - get
      - apiGroups:
        - ""
        resources:
        - serviceaccounts/token
        verbs:
        - create
      - apiGroups:
        - ""
        resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"status":   "status represents status of the VolumeAttachment request. Populated by the entity completing the attach or detach operation, i.e. the external-attacher.",
    }
    
    func (VolumeAttachment) SwaggerDoc() map[string]string {
    	return map_VolumeAttachment
    }
    
    var map_VolumeAttachmentList = map[string]string{
    	"":         "VolumeAttachmentList is a collection of VolumeAttachment objects.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

      - apiGroups:
        - ""
        - events.k8s.io
        resources:
        - events
        verbs:
        - create
        - patch
        - update
      - apiGroups:
        - storage.k8s.io
        resources:
        - volumeattachments
        verbs:
        - create
        - delete
        - get
        - list
        - watch
      - apiGroups:
        - storage.k8s.io
        resources:
        - csidrivers
        verbs:
        - get
        - list
        - watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      //
      // +optional
      optional int64 expirationSeconds = 2;
    }
    
    // VolumeAttachment captures the intent to attach or detach the specified volume
    // to/from the specified node.
    //
    // VolumeAttachment objects are non-namespaced.
    message VolumeAttachment {
      // Standard object metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top