Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 377 for Mounts (0.16 sec)

  1. pkg/volume/local/local_test.go

    	}{
    		"empty": {
    			[]string{},
    			[]string{},
    		},
    		"not-pod-mount": {
    			[]string{"/mnt/outside"},
    			[]string{},
    		},
    		"pod-mount": {
    			[]string{filepath.Join(podsDir, "pod-mount")},
    			[]string{filepath.Join(podsDir, "pod-mount")},
    		},
    		"not-directory-prefix": {
    			[]string{podsDir + "pod-mount"},
    			[]string{},
    		},
    		"mix": {
    			[]string{"/mnt/outside",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 10:53:39 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    				goto childerror
    			}
    			if _, _, err1 = RawSyscall(SYS_CLOSE, fd1, 0, 0); err1 != 0 {
    				goto childerror
    			}
    		}
    
    		// The unshare system call in Linux doesn't unshare mount points
    		// mounted with --shared. Systemd mounts / with --shared. For a
    		// long discussion of the pros and cons of this see debian bug 739593.
    		// The Go model of unsharing is more like Plan 9, where you ask
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. pkg/volume/emptydir/empty_dir_test.go

    		path           string
    		mounter        mount.Interface
    		expectedResult resource.Quantity
    		shouldFail     bool
    	}{
    		"Valid: existing 2Mi mount": {
    			path:           "/mnt/hugepages-2Mi",
    			mounter:        mounter,
    			shouldFail:     false,
    			expectedResult: resource.MustParse("2Mi"),
    		},
    		"Valid: existing 1Gi mount": {
    			path:           "/mnt/hugepages-1Gi",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. samples/security/spire/spire-quickstart.yaml

                - mountPath: /spiffe-csi
                  name: spiffe-csi-socket-dir
                # The volume containing mount points for containers.
                - mountPath: /var/lib/kubelet/pods
                  mountPropagation: Bidirectional
                  name: mountpoint-dir
              securityContext:
                privileged: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/cache/secretcache.go

    	totalTimeout = time.Second * 10
    )
    
    const (
    	// firstRetryBackOffDuration is the initial backoff time interval when hitting
    	// non-retryable error in CSR request or while there is an error in reading file mounts.
    	firstRetryBackOffDuration = 50 * time.Millisecond
    )
    
    // SecretManagerClient a SecretManager that signs CSRs using a provided security.Client. The primary
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    		WorkingDir:  container.WorkingDir,
    		Labels:      newContainerLabels(container, pod),
    		Annotations: newContainerAnnotations(container, pod, restartCount, opts),
    		Devices:     makeDevices(opts),
    		Mounts:      m.makeMounts(opts, container),
    		LogPath:     containerLogsPath,
    		Stdin:       container.Stdin,
    		StdinOnce:   container.StdinOnce,
    		Tty:         container.TTY,
    		Linux:       l,
    		Envs:        envs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  7. pkg/apis/apps/validation/validation.go

    			}
    		}
    		// TODO: Add validation for PodSpec, currently this will check volumes, which we know will
    		// fail. We should really check that the union of the given volumes and volumeClaims match
    		// volume mounts in the containers.
    		// allErrs = append(allErrs, apivalidation.ValidatePodTemplateSpec(template, fldPath)...)
    		allErrs = append(allErrs, unversionedvalidation.ValidateLabels(template.Labels, fldPath.Child("labels"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. pkg/istio-agent/agent_test.go

    			a.Security.CARootPath = cafile.CACertFilePath
    			return a
    		}).Check(t, cfg.GetRootResourceName(), cfg.GetResourceName())
    	})
    	t.Run("Implicit file mounted certs", func(t *testing.T) {
    		// User mounts certificates in /etc/certs (hardcoded path). CA communication is disabled.
    		// mTLS is always used for authentication with Istiod, never JWT.
    		copyCerts(t, "./etc/certs")
    		t.Cleanup(func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. pkg/features/kube_features.go

    	SELinuxMount featuregate.Feature = "SELinuxMount"
    
    	// owner: @AkihiroSuda
    	// kep: https://kep.k8s.io/3857
    	// alpha: v1.30
    	//
    	// Allows recursive read-only mounts.
    	RecursiveReadOnlyMounts featuregate.Feature = "RecursiveReadOnlyMounts"
    
    	// owner: @everpeace
    	// kep: https://kep.k8s.io/3619
    	// alpha: v1.31
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_executor.go

    	// If a volume has 'Filesystem' volumeMode, MountVolume mounts the
    	// volume to the pod specified in volumeToMount.
    	// Specifically it will:
    	// * Wait for the device to finish attaching (for attachable volumes only).
    	// * Mount device to global mount path (for attachable volumes only).
    	// * Update actual state of world to reflect volume is globally mounted (for
    	//   attachable volumes only).
    	// * Mount the volume to the pod specific path.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top