Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 254 for unmounted (0.15 sec)

  1. pkg/volume/flexvolume/plugin.go

    	return plugin.newUnmounterInternal(volName, podUID, plugin.host.GetMounter(plugin.GetPluginName()), plugin.runner)
    }
    
    // newUnmounterInternal is the internal unmounter routine to clean the volume.
    func (plugin *flexVolumePlugin) newUnmounterInternal(volName string, podUID types.UID, mounter mount.Interface, runner exec.Interface) (volume.Unmounter, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/istio_ca.go

    		}
    
    		// Either the secret is not mounted because it is named `istio-ca-secret`,
    		// or it is `cacerts` secret mounted with "istio-generated" key set.
    		caOpts, err = s.createSelfSignedCACertificateOptions(&fileBundle, opts)
    		if err != nil {
    			return nil, err
    		}
    		caOpts.OnRootCertUpdate = s.updateRootCertAndGenKeyCert
    	} else {
    		// The secret is mounted and the "istio-generated" key is not used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_mounter_test.go

    			volDataKey.volHandle:  testVol,
    		},
    	); err != nil {
    		t.Fatalf("failed to save volume data: %v", err)
    	}
    
    	unmounter, err := plug.NewUnmounter(pv.ObjectMeta.Name, testPodUID)
    	if err != nil {
    		t.Fatalf("failed to make a new Unmounter: %v", err)
    	}
    
    	csiUnmounter := unmounter.(*csiMountMgr)
    	csiUnmounter.csiClient = setupClient(t, true)
    	err = csiUnmounter.TearDownAt(dir)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/config/types.go

    	// wait between successive executions. Is set to 60 sec by default.
    	ReconcilerSyncLoopPeriod metav1.Duration
    	// DisableForceDetachOnTimeout disables force detach when the maximum unmount
    	// time is exceeded. Is false by default, and thus force detach on unmount is
    	// enabled.
    	DisableForceDetachOnTimeout bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/sub-applications.md

    This sub-application is just another standard FastAPI application, but this is the one that will be "mounted":
    
    ```Python hl_lines="11  14-16"
    {!../../../docs_src/sub_applications/tutorial001.py!}
    ```
    
    ### Mount the sub-application
    
    In your top-level application, `app`, mount the sub-application, `subapi`.
    
    In this case, it will be mounted at the path `/subapi`:
    
    ```Python hl_lines="11  19"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pkg/volume/noop_expandable_plugin.go

    func (n *noopExpandableVolumePluginInstance) NewMounter(spec *Spec, podRef *v1.Pod, opts VolumeOptions) (Mounter, error) {
    	return nil, nil
    }
    
    func (n *noopExpandableVolumePluginInstance) NewUnmounter(name string, podUID types.UID) (Unmounter, error) {
    	return nil, nil
    }
    
    func (n *noopExpandableVolumePluginInstance) ConstructVolumeSpec(volumeName, mountPath string) (ReconstructedVolume, error) {
    	return ReconstructedVolume{Spec: n.spec}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/cache/desired_state_of_wold_selinux_metrics.go

    		&compbasemetrics.GaugeOpts{
    			Name:           "volume_manager_selinux_volume_context_mismatch_errors_total",
    			Help:           "Number of errors when a Pod uses a volume that is already mounted with a different SELinux context than the Pod needs. Kubelet can't start such a Pod then and it will retry, therefore value of this metric may not represent the actual nr. of Pods.",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 12:16:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_plugin_test.go

    		t.Fatalf("failed to save volume data: %v", err)
    	}
    
    	// test unmounter
    	unmounter, err := plug.NewUnmounter(pv.ObjectMeta.Name, testPodUID)
    	csiUnmounter := unmounter.(*csiMountMgr)
    
    	if err != nil {
    		t.Fatalf("Failed to make a new Unmounter: %v", err)
    	}
    
    	if csiUnmounter == nil {
    		t.Fatal("failed to create CSI Unmounter")
    	}
    
    	if csiUnmounter.podUID != testPodUID {
    		t.Error("podUID not set")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1/types.go

    	// A volume that is both attached and mounted on a node is considered to be used once, not twice.
    	// The same rule applies for a unique volume that is shared among multiple pods on the same node.
    	// If this field is not specified, then the supported number of volumes on this node is unbounded.
    	// +optional
    	Count *int32 `json:"count,omitempty" protobuf:"varint,1,opt,name=count"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/generated.proto

      // A volume that is both attached and mounted on a node is considered to be used once, not twice.
      // The same rule applies for a unique volume that is shared among multiple pods on the same node.
      // If this field is not specified, then the supported number of volumes on this node is unbounded.
      // +optional
      optional int32 count = 1;
    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