Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Mounts (0.22 sec)

  1. pkg/kubelet/kubelet_pods.go

    	mounts := []kubecontainer.Mount{}
    	var cleanupAction func()
    	for i, mount := range container.VolumeMounts {
    		// do not mount /etc/hosts if container is already mounting on the path
    		mountEtcHostsFile = mountEtcHostsFile && (mount.MountPath != etcHostsPath)
    		vol, ok := podVolumes[mount.Name]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. common/scripts/setup_env.sh

      unset -f "${f}"
    done
    
    # Set conditional host mounts
    CONDITIONAL_HOST_MOUNTS="${CONDITIONAL_HOST_MOUNTS:-} "
    container_kubeconfig=''
    
    # docker conditional host mount (needed for make docker push)
    if [[ -d "${HOME}/.docker" ]]; then
      CONDITIONAL_HOST_MOUNTS+="--mount type=bind,source=${HOME}/.docker,destination=/config/.docker,readonly "
    fi
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. pkg/kubelet/container/runtime.go

    	Name  string
    	Value string
    }
    
    // Mount represents a volume mount.
    type Mount struct {
    	// Name of the volume mount.
    	// TODO(yifan): Remove this field, as this is not representing the unique name of the mount,
    	// but the volume name only.
    	Name string
    	// Path of the mount within the container.
    	ContainerPath string
    	// Path of the mount on the host.
    	HostPath string
    	// Whether the mount is read-only.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      safe-bind-mount "${mountpoint}" "${bindpoint}"
    }
    
    # Bind mounts device at mountpoint to bindpoint
    function safe-bind-mount(){
      local mountpoint="${1}"
      local bindpoint="${2}"
    
      # Mount device to the mountpoint
      mkdir -p "${bindpoint}"
      echo "Binding '${mountpoint}' at '${bindpoint}'"
      mount --bind "${mountpoint}" "${bindpoint}"
      chmod a+w "${bindpoint}"
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. 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)
  6. CHANGELOG/CHANGELOG-1.30.md

    - Fixed an issue where mount points could become local without calling `NodePublishVolume` after node rebooting.
       ([#119923](https://github.com/kubernetes/kubernetes/pull/119923), [@cvvz](https://github.com/cvvz))
    - Fixed cleanup of Pod volume mounts when a file was used as a subpath.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. docs/site-replication/run-ssec-object-replication-with-compression.sh

    ./mc ls minio1/test-bucket --insecure
    count1=$(./mc ls minio1/test-bucket/plainfile --insecure | wc -l)
    if [ "${count1}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/plainfile not found"
    	exit_1
    fi
    count2=$(./mc ls minio1/test-bucket/encrypted --insecure | wc -l)
    if [ "${count2}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/encrypted not found"
    	exit_1
    fi
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. docs/site-replication/run-replication-with-checksum-header.sh

    echo "Objects from replicated site"
    ./mc ls minio2/test-bucket --insecure
    count1=$(./mc ls minio2/test-bucket/obj --insecure | wc -l)
    if [ "${count1}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/obj not replicated"
    	exit_1
    fi
    count2=$(./mc ls minio2/test-bucket/mpartobj --insecure | wc -l)
    if [ "${count2}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/mpartobj not replicated"
    	exit_1
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 08 16:24:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

        Counter c2 = new Counter(aa);
        Thread t1 = newStartedThread(c1);
        Thread t2 = newStartedThread(c2);
        awaitTermination(t1);
        awaitTermination(t2);
        assertEquals(SIZE * COUNTDOWN, c1.counts + c2.counts);
      }
    
      /** a deserialized serialized array holds same values */
      public void testSerialization() throws Exception {
        AtomicDoubleArray x = new AtomicDoubleArray(SIZE);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/annotations/KtEmptyAnnotationsList.kt

            return Collections.emptyIterator()
        }
    
        override fun get(index: Int): KaAnnotation = withValidityAssertion {
            throw IndexOutOfBoundsException("Index $index out of bounds")
        }
    
        override fun contains(classId: ClassId): Boolean = withValidityAssertion {
            return false
        }
    
        override fun get(classId: ClassId): List<KaAnnotation> = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top