Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 100 for volumeattachments (0.68 sec)

  1. common-protos/k8s.io/api/storage/v1/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.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1beta1/types.go

    // +k8s:prerelease-lifecycle-gen:deprecated=1.19
    // +k8s:prerelease-lifecycle-gen:replacement=storage.k8s.io,v1,VolumeAttachment
    
    // 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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types.go

    	// items is the list of VolumeAttachments
    	Items []VolumeAttachment `json:"items" protobuf:"bytes,2,rep,name=items"`
    }
    
    // VolumeAttachmentSpec is the specification of a VolumeAttachment request.
    type VolumeAttachmentSpec struct {
    	// attacher indicates the name of the volume driver that MUST handle this
    	// request. This is the name returned by GetPluginName().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    				rbacv1helpers.NewRule("list", "watch").Groups(legacyGroup).Resources("pods").RuleOrDie(),
    				eventsRule(),
    				rbacv1helpers.NewRule("get", "create", "delete", "list", "watch").Groups(storageGroup).Resources("volumeattachments").RuleOrDie(),
    			},
    		}
    
    		role.Rules = append(role.Rules, rbacv1helpers.NewRule("get", "watch", "list").Groups("storage.k8s.io").Resources("csidrivers").RuleOrDie())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. pkg/apis/storage/types.go

    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ListMeta
    
    	// Items is the list of VolumeAttachments
    	Items []VolumeAttachment
    }
    
    // The specification of a VolumeAttachment request.
    type VolumeAttachmentSpec struct {
    	// Attacher indicates the name of the volume driver that MUST handle this
    	// request. This is the name returned by GetPluginName().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_plugin.go

    	// search for attachment by VolumeAttachment.Spec.Source.PersistentVolumeName
    	attachment, err := client.StorageV1().VolumeAttachments().Get(context.TODO(), attachID, meta.GetOptions{})
    	if err != nil {
    		return nil, err // This err already has enough context ("VolumeAttachment xyz not found")
    	}
    
    	if attachment == nil {
    		err = errors.New("no existing VolumeAttachment found")
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    		// Leases
    		rbacv1helpers.NewRule("get", "create", "update", "patch", "delete").Groups("coordination.k8s.io").Resources("leases").RuleOrDie(),
    
    		// CSI
    		rbacv1helpers.NewRule("get").Groups(storageGroup).Resources("volumeattachments").RuleOrDie(),
    
    		// Use the Node authorization to limit a node to create tokens for service accounts running on that node
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/core.go

    			controllerContext.InformerFactory.Core().V1().PersistentVolumes(),
    			csiNodeInformer,
    			csiDriverInformer,
    			controllerContext.InformerFactory.Storage().V1().VolumeAttachments(),
    			plugins,
    			GetDynamicPluginProber(controllerContext.ComponentConfig.PersistentVolumeBinderController.VolumeConfiguration),
    			controllerContext.ComponentConfig.AttachDetachController.DisableAttachDetachReconcilerSync,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top