Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 923 for Mounts (0.19 sec)

  1. pkg/apis/core/validation/validation.go

    			return true
    		}
    	}
    
    	return false
    }
    
    func deviceNameAlreadyExists(name string, mounts map[string]string) bool {
    	if _, ok := mounts[name]; ok {
    		return true
    	}
    	return false
    }
    
    func devicePathAlreadyExists(devicePath string, mounts map[string]string) bool {
    	for _, mountPath := range mounts {
    		if mountPath == devicePath {
    			return true
    		}
    	}
    
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. 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)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// MountPropagationBidirectional means that the volume in a container will
    	// receive new mounts from the host or other containers, and its own mounts
    	// will be propagated from the container to the host or other containers.
    	// Note that this mode is recursively applied to all mounts in the volume
    	// ("rshared" in Linux terminology).
    	MountPropagationBidirectional MountPropagationMode = "Bidirectional"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.10.md

    ### Storage
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K 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. test/bounds.go

    	use(a1[i&999])
    	use(a1k[i&999])   // ERROR "index bounds check elided"
    	use(a100k[i&999]) // ERROR "index bounds check elided"
    	use(p1[i&999])
    	use(p1k[i&999])   // ERROR "index bounds check elided"
    	use(p100k[i&999]) // ERROR "index bounds check elided"
    
    	use(s[ui&999])
    	use(a1[ui&999])
    	use(a1k[ui&999])   // ERROR "index bounds check elided"
    	use(a100k[ui&999]) // ERROR "index bounds check elided"
    	use(p1[ui&999])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 27 03:11:45 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  8. 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)
  9. CHANGELOG/CHANGELOG-1.11.md

    * Fixes spurious 0-length API responses. ([#72856](https://github.com/kubernetes/kubernetes/pull/72856), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  10. 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)
Back to top