Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 259 for remount (5.88 sec)

  1. cluster/gce/gci/flexvolume_node_setup.sh

    mount --bind ${MOUNTER_PATH} ${MOUNTER_PATH}
    mount -o remount,dev,exec ${MOUNTER_PATH}
    
    echo
    echo "Setting up FlexVolume driver..."
    echo
    
    mkdir -p ${VOLUME_PLUGIN_DIR}
    mount --bind ${VOLUME_PLUGIN_DIR} ${VOLUME_PLUGIN_DIR}
    mount -o remount,exec ${VOLUME_PLUGIN_DIR}
    generate_chroot_wrapper
    
    echo
    echo "Restarting Kubelet..."
    echo
    
    systemctl restart kubelet.service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  2. src/os/exec/lp_linux_test.go

    		} else {
    			t.Fatalf("exec: got %v, want nil", err)
    		}
    	}
    
    	// Remount with noexec flag.
    	err = syscall.Mount("", tmp, "", syscall.MS_REMOUNT|syscall.MS_NOEXEC, "")
    	if testenv.SyscallIsNotSupported(err) {
    		t.Skipf("requires ability to re-mount tmpfs (%v)", err)
    	} else if err != nil {
    		t.Fatalf("remount %s with noexec failed: %v", tmp, err)
    	}
    
    	if err := exec.Command(path).Run(); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:02:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. cluster/gce/gci/node.yaml

          After=network-online.target
    
          [Service]
          Type=oneshot
          RemainAfterExit=yes
          ExecStartPre=/bin/mkdir -p /home/kubernetes/bin
          ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin
          ExecStartPre=/bin/mount -o remount,exec /home/kubernetes/bin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 13 18:38:40 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. cluster/gce/gci/master.yaml

          After=network-online.target
    
          [Service]
          Type=oneshot
          RemainAfterExit=yes
          ExecStartPre=/bin/mkdir -p /home/kubernetes/bin
          ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin
          ExecStartPre=/bin/mount -o remount,exec /home/kubernetes/bin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 12 16:22:20 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure.sh

    }
    
    function split-commas {
      echo -e "${1//,/'\n'}"
    }
    
    function remount-flexvolume-directory {
      local -r flexvolume_plugin_dir=$1
      mkdir -p "$flexvolume_plugin_dir"
      mount --bind "$flexvolume_plugin_dir" "$flexvolume_plugin_dir"
      mount -o remount,exec "$flexvolume_plugin_dir"
    }
    
    function install-gci-mounter-tools {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		// First, unshare the mount namespace. This allows us to create custom mounts without impacting the host
    		if err := unix.Unshare(unix.CLONE_NEWNS); err != nil {
    			return fmt.Errorf("failed to unshare to new mount namespace: %v", err)
    		}
    		if err := n.Set(); err != nil {
    			return fmt.Errorf("failed to reset network namespace: %v", err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    	// 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. pkg/kubelet/volumemanager/volume_manager.go

    	// The data structure is populated upon successful completion of attach,
    	// detach, mount, and unmount actions triggered by the reconciler.
    	actualStateOfWorld cache.ActualStateOfWorld
    
    	// operationExecutor is used to start asynchronous attach, detach, mount,
    	// and unmount operations.
    	operationExecutor operationexecutor.OperationExecutor
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_executor.go

    	OuterVolumeSpecName string
    
    	// PluginName is the "Unescaped Qualified" name of the volume plugin used to
    	// mount and unmount this volume. It can be used to fetch the volume plugin
    	// to unmount with, on demand. It is also the name that plugins use, though
    	// escaped, in their pod mount path, i.e.
    	// /var/lib/kubelet/pods/{podUID}/volumes/{escapeQualifiedPluginName}/{outerVolumeSpecName}/
    	PluginName string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. pkg/volume/emptydir/empty_dir_test.go

    			}
    		})
    	}
    }
    
    func TestGetPageSize(t *testing.T) {
    	mounter := &mount.FakeMounter{
    		MountPoints: []mount.MountPoint{
    			{
    				Device: "/dev/sda2",
    				Type:   "ext4",
    				Path:   "/",
    				Opts:   []string{"rw", "relatime", "errors=remount-ro"},
    			},
    			{
    				Device: "/dev/hugepages",
    				Type:   "hugetlbfs",
    				Path:   "/mnt/hugepages-2Mi",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top