Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,321 for Mounted (0.2 sec)

  1. releasenotes/notes/file-mounted-crl.yaml

    Rama Chavali <******@****.***> 1709540978 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:38 UTC 2024
    - 303 bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	//   - VolumeMountUncertain: means volume for pod may not be mounted, but it must be unmounted
    	volumeMountStateForPod operationexecutor.VolumeMountState
    
    	// seLinuxMountContext is the context with that the volume is mounted to Pod directory
    	// (via -o context=XYZ mount option). If nil, the volume is not mounted. If "", the volume is
    	// mounted without "-o context=".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  3. tests/integration/security/file_mounted_certs/p2p_mtls_test.go

    	// nolint: lll
    	ExpectedXfccHeader = `By=spiffe://cluster.local/ns/mounted-certs/sa/server;Hash=86948ccdaf2de73b20d389dc212aaf2d72f9f1ca239327cc2e8b05e61b1676d1;Subject="CN=client.mounted-certs.svc.cluster.local";URI=spiffe://cluster.local/ns/mounted-certs/sa/client;DNS=client.mounted-certs.svc`
    )
    
    func TestClientToServiceTls(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_executor.go

    	PluginName string
    
    	// PodUID is the UID of the pod mounted to. It is also the string used by
    	// plugins in their pod mount path, i.e.
    	// /var/lib/kubelet/pods/{podUID}/volumes/{escapeQualifiedPluginName}/{outerVolumeSpecName}/
    	PodUID types.UID
    
    	// Mounter is the volume mounter used to mount this volume. It is required
    	// by kubelet to create container.VolumeMap.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/volume_manager.go

    	// WaitForAttachAndMount processes the volumes referenced in the specified
    	// pod and blocks until they are all attached and mounted (reflected in
    	// actual state of the world).
    	// An error is returned if all volumes are not attached and mounted within
    	// the duration defined in podAttachAndMountTimeout.
    	WaitForAttachAndMount(ctx context.Context, pod *v1.Pod) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/static-files.md

    This is different from using an `APIRouter` as a mounted application is completely independent. The OpenAPI and docs from your main application won't include anything from the mounted application, etc.
    
    You can read more about this in the [Advanced User Guide](../advanced/index.md){.internal-link target=_blank}.
    
    ## Details
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 19:56:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    }
    
    func (rc *reconciler) mountAttachedVolumes(volumeToMount cache.VolumeToMount, podExistError error) {
    	// Volume is not mounted, or is already mounted, but requires remounting
    	remountingLogStr := ""
    	isRemount := cache.IsRemountRequiredError(podExistError)
    	if isRemount {
    		remountingLogStr = "Volume is already mounted to pod, but remount was requested."
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. tests/testdata/certs/generate.sh

    basicConstraints = CA:FALSE
    keyUsage = nonRepudiation, digitalSignature, keyEncipherment
    extendedKeyUsage = clientAuth, serverAuth
    subjectAltName = @alt_names
    [alt_names]
    URI = spiffe://cluster.local/ns/mounted-certs/sa/server
    DNS = server.mounted-certs.svc
    EOF
    
    cat > "${WD}/mountedcerts-client.conf" <<EOF
    [req]
    req_extensions = v3_req
    distinguished_name = req_distinguished_name
    [req_distinguished_name]
    [ v3_req ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:49:21 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. 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)
  10. pkg/volume/util/nested_volumes.go

    			// Because of this, we should use a list of previously mounted mountpoints, rather than only one.
    			prevNestedMPs := []string{}
    			// examine each mount point to see if it's nested beneath this volume
    			// (but skip any that are double-nested beneath this volume)
    			// For example, if this volume is mounted as /dir and other volumes are mounted
    			//              as /dir/nested and /dir/nested/other, only create /dir/nested.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 12:19:17 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top