Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 248 for unmounted (0.11 sec)

  1. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	// SetVolumesMountedByNode sets all the volumes mounted by the given node.
    	// These volumes should include attached volumes, not-yet-attached volumes,
    	// and may also include non-attachable volumes.
    	// When present in the volumeNames parameter, the volume
    	// is mounted by the given node, indicating it may not be safe to detach.
    	// Otherwise, the volume is not mounted by the given node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. pkg/istio-agent/plugins.go

    	// Will use TLS unless the reserved 15010 port is used ( istiod on an ipsec/secure VPC)
    	// rootCert may be nil - in which case the system roots are used, and the CA is expected to have public key
    	// Otherwise assume the injection has mounted /etc/certs/root-cert.pem
    	return citadel.NewCitadelClient(opts, tlsOpts)
    }
    
    func init() {
    	providers["Citadel"] = createCitadel
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 03:32:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/templates.md

    ```html
    <a href="/items/42">
    ```
    
    ## Templates and static files
    
    You can also use `url_for()` inside of the template, and use it, for example, with the `StaticFiles` you mounted with the `name="static"`.
    
    ```jinja hl_lines="4"
    {!../../../docs_src/templates/templates/item.html!}
    ```
    
    In this example, it would link to a CSS file at `static/styles.css` with:
    
    ```CSS hl_lines="4"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. pkg/kubelet/util/swap/swap_util.go

    		if err != nil {
    			klog.InfoS("error mounting tmpfs with the noswap option. Assuming not supported", "error", err)
    			return false
    		}
    
    		err = mounter.Unmount(mountPath)
    		if err != nil {
    			klog.ErrorS(err, "error unmounting test tmpfs dir", "mount path", mountPath)
    		}
    
    		return true
    	}
    
    	tmpfsNoswapOptionAvailabilityOnce.Do(func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. pkg/volume/hostpath/host_path.go

    		hu:            kvh.GetHostUtil(),
    		noTypeChecker: plugin.noTypeChecker,
    	}, nil
    }
    
    func (plugin *hostPathPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return &hostPathUnmounter{&hostPath{
    		path: "",
    	}}, nil
    }
    
    // Recycle recycles/scrubs clean a HostPath volume.
    // Recycle blocks until the pod has completed or any error occurs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. docs/distributed/README.md

    - MinIO distributed mode requires **fresh directories**. If required, the drives can be shared with other applications. You can do this by using a sub-directory exclusive to MinIO. For example, if you have mounted your volume under `/export`, pass `/export/data` as arguments to MinIO server.
    - The IP addresses and drive paths below are for demonstration purposes only, you need to replace these with the actual IP addresses and drive paths/folders.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. pkg/volume/csi/expander.go

    		secrets:           nodeExpandSecrets,
    	}
    
    	if !fsVolume {
    		// for block volumes the volumePath in CSI NodeExpandvolumeRequest is
    		// basically same as DevicePath because block devices are not mounted and hence
    		// DeviceMountPath does not get populated in resizeOptions.DeviceMountPath
    		opts.volumePath = resizeOptions.DevicePath
    		opts.fsType = fsTypeBlockName
    	}
    
    	if pv.Spec.AccessModes != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. pkg/volume/util/hostutil/hostutil.go

    )
    
    // HostUtils defines the set of methods for interacting with paths on a host.
    type HostUtils interface {
    	// DeviceOpened determines if the device (e.g. /dev/sdc) is in use elsewhere
    	// on the system, i.e. still mounted.
    	DeviceOpened(pathname string) (bool, error)
    	// PathIsDevice determines if a path is a device.
    	PathIsDevice(pathname string) (bool, error)
    	// GetDeviceNameFromMount finds the device name by checking the mount path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 13:38:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

    // ClusterTrustBundle is a cluster-scoped container for X.509 trust anchors
    // (root certificates).
    //
    // ClusterTrustBundle objects are considered to be readable by any authenticated
    // user in the cluster, because they can be mounted by pods using the
    // `clusterTrustBundle` projection.  All service accounts have read access to
    // ClusterTrustBundles by default.  Users who only have namespace-level access
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

        - mountPath: /etc/istio/proxy
          name: istio-xds
        - mountPath: /var/run/secrets/tokens
          name: istio-token
        {{- if .Values.global.mountMtlsCerts }}
        # Use the key and cert mounted to /etc/certs/ for the in-cluster mTLS communications.
        - mountPath: /etc/certs/
          name: istio-certs
          readOnly: true
        {{- end }}
        - name: istio-podinfo
          mountPath: /etc/istio/pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top