Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 586 for Mounts (0.11 sec)

  1. pilot/cmd/pilot-agent/options/options.go

    	kubeAppProberNameVar = env.Register(status.KubeAppProberEnvName, "", "")
    	ProxyConfigEnv       = env.Register(
    		"PROXY_CONFIG",
    		"",
    		"The proxy configuration. This will be set by the injection - gateways will use file mounts.",
    	).Get()
    
    	serviceAccountVar = env.Register("SERVICE_ACCOUNT", "", "Name of service account")
    	clusterIDVar      = env.Register("ISTIO_META_CLUSTER_ID", "", "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K 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/volume/flexvolume/plugin.go

    	if err != nil {
    		return "", fmt.Errorf("GetVolumeName failed from getDeviceMountPath: %s", err)
    	}
    
    	mountsDir := filepath.Join(plugin.host.GetPluginDir(flexVolumePluginName), plugin.driverName, "mounts")
    	return filepath.Join(mountsDir, volumeName), nil
    }
    
    func (plugin *flexVolumePlugin) RequiresFSResize() bool {
    	return plugin.capabilities.RequiresFSResize
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/os/os_test.go

    			case "windows":
    				t.Error(errormsg)
    			default: // unix's
    				if got, want := at0, tt.wantATime; !got.Equal(want) {
    					mounts, err := ReadFile("/bin/mounts")
    					if err != nil {
    						mounts, err = ReadFile("/etc/mtab")
    					}
    					if strings.Contains(string(mounts), "noatime") {
    						t.Log(errormsg)
    						t.Log("A filesystem is mounted with noatime; ignoring.")
    					} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/container_manager.go

    	// UpdateQOSCgroups performs housekeeping updates to ensure that the top
    	// level QoS containers have their desired state in a thread-safe way
    	UpdateQOSCgroups() error
    
    	// GetResources returns RunContainerOptions with devices, mounts, and env fields populated for
    	// extended resources required by container.
    	GetResources(pod *v1.Pod, container *v1.Container) (*kubecontainer.RunContainerOptions, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/volume_manager.go

    }
    
    // getExpectedVolumes returns a list of volumes that must be mounted in order to
    // consider the volume setup step for this pod satisfied.
    func getExpectedVolumes(pod *v1.Pod) []string {
    	mounts, devices, _ := util.GetPodVolumeNames(pod)
    	return mounts.Union(devices).UnsortedList()
    }
    
    // getExtraSupplementalGid returns the value of an extra supplemental GID as
    // defined by an annotation on a volume and a boolean indicating whether the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. docs/distributed/DESIGN.md

    Refer to the sizing guide with details on the default parity count chosen for different erasure stripe sizes [here](https://github.com/minio/minio/blob/master/docs/distributed/SIZING.md)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 15 23:04:20 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. 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)
  9. pkg/kubelet/cm/container_manager_linux.go

    	if err != nil {
    		return nil, err
    	} else if devOpts == nil {
    		return opts, nil
    	}
    	opts.Devices = append(opts.Devices, devOpts.Devices...)
    	opts.Mounts = append(opts.Mounts, devOpts.Mounts...)
    	opts.Envs = append(opts.Envs, devOpts.Envs...)
    	opts.Annotations = append(opts.Annotations, devOpts.Annotations...)
    	opts.CDIDevices = append(opts.CDIDevices, devOpts.CDIDevices...)
    	return opts, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. pkg/volume/iscsi/iscsi.go

    	// Try really hard to get the global mount of the volume, an error returned from here would
    	// leave the global mount still mounted, while marking the volume as unused.
    	// The volume can then be mounted on several nodes, resulting in volume
    	// corruption.
    	paths, err := ioutil.GetReliableMountRefs(mounter, mountPath)
    	if io.IsInconsistentReadError(err) {
    		klog.Errorf("Failed to read mount refs from /proc/mounts for %s: %s", mountPath, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top