Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for AttachmentMetadata (0.42 sec)

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

    	// attachmentMetadata is populated with any
    	// information returned by the attach operation, upon successful attach, that must be passed
    	// into subsequent WaitForAttach or Mount calls.
    	// This field must only be set by the entity completing the attach
    	// operation, i.e. the external-attacher.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1beta1/generated.pb.go

    			}
    			i -= size
    			i = encodeVarintGenerated(dAtA, i, uint64(size))
    		}
    		i--
    		dAtA[i] = 0x1a
    	}
    	if len(m.AttachmentMetadata) > 0 {
    		keysForAttachmentMetadata := make([]string, 0, len(m.AttachmentMetadata))
    		for k := range m.AttachmentMetadata {
    			keysForAttachmentMetadata = append(keysForAttachmentMetadata, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForAttachmentMetadata)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/generated.pb.go

    			}
    			i -= size
    			i = encodeVarintGenerated(dAtA, i, uint64(size))
    		}
    		i--
    		dAtA[i] = 0x1a
    	}
    	if len(m.AttachmentMetadata) > 0 {
    		keysForAttachmentMetadata := make([]string, 0, len(m.AttachmentMetadata))
    		for k := range m.AttachmentMetadata {
    			keysForAttachmentMetadata = append(keysForAttachmentMetadata, string(k))
    		}
    		github_com_gogo_protobuf_sortkeys.Strings(keysForAttachmentMetadata)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/types.go

    	// attachmentMetadata is populated with any
    	// information returned by the attach operation, upon successful attach, that must be passed
    	// into subsequent WaitForAttach or Mount calls.
    	// This field must only be set by the entity completing the attach
    	// operation, i.e. the external-attacher.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation_test.go

    			Source: storage.VolumeAttachmentSource{
    				PersistentVolumeName: &volumeName,
    			},
    			NodeName: "mynode",
    		},
    		Status: storage.VolumeAttachmentStatus{
    			Attached: true,
    			AttachmentMetadata: map[string]string{
    				"foo": "bar",
    			},
    			AttachError: &storage.VolumeError{
    				Time:    metav1.Time{},
    				Message: "hello world",
    			},
    			DetachError: &storage.VolumeError{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_block.go

    		return "", nil
    	}
    	publishVolumeInfo := map[string]string{}
    	if attachment != nil {
    		publishVolumeInfo = attachment.Status.AttachmentMetadata
    	}
    	nodeStageSecrets := map[string]string{}
    	if csiSource.NodeStageSecretRef != nil {
    		nodeStageSecrets, err = getCredentialsFromSecret(m.k8s, csiSource.NodeStageSecretRef)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. pkg/apis/storage/validation/validation.go

    func validateVolumeAttachmentStatus(status *storage.VolumeAttachmentStatus, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, validateAttachmentMetadata(status.AttachmentMetadata, fldPath.Child("attachmentMetadata"))...)
    	allErrs = append(allErrs, validateVolumeError(status.AttachError, fldPath.Child("attachError"))...)
    	allErrs = append(allErrs, validateVolumeError(status.DetachError, fldPath.Child("detachError"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"attached":           "attached indicates the volume is successfully attached. This field must only be set by the entity completing the attach operation, i.e. the external-attacher.",
    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. common-protos/k8s.io/api/storage/v1/generated.proto

      optional bool attached = 1;
    
      // attachmentMetadata is populated with any
      // information returned by the attach operation, upon successful attach, that must be passed
      // into subsequent WaitForAttach or Mount calls.
      // This field must only be set by the entity completing the attach
      // operation, i.e. the external-attacher.
      // +optional
      map<string, string> attachmentMetadata = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/generated.proto

      optional bool attached = 1;
    
      // attachmentMetadata is populated with any
      // information returned by the attach operation, upon successful attach, that must be passed
      // into subsequent WaitForAttach or Mount calls.
      // This field must only be set by the entity completing the attach
      // operation, i.e. the external-attacher.
      // +optional
      map<string, string> attachmentMetadata = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top