Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for attachmentID (0.22 sec)

  1. pkg/volume/csi/csi_plugin.go

    	attachID := getAttachmentName(handle, driver, nodeName)
    
    	// 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")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_mounter_test.go

    			}
    
    			attachID := getAttachmentName(csiMounter.volumeID, string(csiMounter.driverName), string(plug.host.GetNodeName()))
    			attachment := makeTestAttachment(attachID, "test-node", csiMounter.spec.Name())
    			_, err = csiMounter.k8s.StorageV1().VolumeAttachments().Create(context.TODO(), attachment, meta.CreateOptions{})
    			if err != nil {
    				t.Fatalf("failed to setup VolumeAttachment: %v", err)
    			}
    
    			if tc.unsetClient {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  3. releasenotes/notes/49700.yaml

    # process. This will appear in the release notes.
    upgradeNotes:
      - title: New ambient mode waypoint attachment method
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/templates/network-attachment-definition.yaml

    Ben Leggett <******@****.***> 1715982749 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 231 bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_attacher_test.go

    			attachID := getAttachmentName(volID, testDriver, nodeName)
    			attachment := makeTestAttachment(attachID, nodeName, pvName)
    			attachment.Status.Attached = tc.initAttached
    			attachment.Status.AttachError = tc.initAttachErr
    			_, err = csiAttacher.k8s.StorageV1().VolumeAttachments().Create(context.TODO(), attachment, metav1.CreateOptions{})
    			if err != nil {
    				t.Fatalf("failed to attach: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	adc.actualStateOfWorld.SetVolumesMountedByNode(logger, volumesInUse, nodeName)
    }
    
    // Process Volume-Attachment objects.
    // Should be called only after populating attached volumes in the ASW.
    // For each VA object, this function checks if its present in the ASW.
    // If not, adds the volume to ASW as an "uncertain" attachment.
    // In the reconciler, the logic checks if the volume is present in the DSW;
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/gateway-api-crd.yaml

                        target single resources. For more information on how this policy attachment
                        mode works, and a sample Policy resource, refer to the policy attachment
                        documentation for Gateway API.
    
    
                        Note: This should only be used for direct policy attachment when references
                        to SectionName are actually needed. In all other cases,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  8. src/net/smtp/smtp.go

    // parameter but not including it in the msg headers.
    //
    // The SendMail function and the net/smtp package are low-level
    // mechanisms and provide no support for DKIM signing, MIME
    // attachments (see the mime/multipart package), or other mail
    // functionality. Higher-level packages exist outside of the standard
    // library.
    func SendMail(addr string, a Auth, from string, to []string, msg []byte) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. operator/pkg/verifier/verifier.go

    // specialKinds is a map of special kinds to their corresponding kind names, which do not follow the
    // standard convention of pluralizing the kind name.
    var specialKinds = map[string]string{
    	"NetworkAttachmentDefinition": "network-attachment-definitions",
    }
    
    // StatusVerifier checks status of certain resources like deployment,
    // jobs and also verifies count of certain resource types.
    type StatusVerifier struct {
    	istioNamespace   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    			"/download": http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    				w.Header().Set("Content-Type", "application/vnd.google.protobuf+gzip")
    				w.Header().Set("Content-Disposition", "attachment;filename=profile.pb.gz")
    				p.Write(w)
    			}),
    		},
    	}
    
    	url := "http://" + args.Hostport
    
    	o.UI.Print("Serving web UI on ", url)
    
    	if o.UI.WantBrowser() && !disableBrowser {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top