Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for rootfs (0.14 sec)

  1. pkg/kubelet/container/runtime.go

    	// If the container has specified the TerminationMessagePath, then
    	// this directory will be used to create and mount the log file to
    	// container.TerminationMessagePath
    	PodContainerDir string
    	// The type of container rootfs
    	ReadOnly bool
    	// hostname for pod containers
    	Hostname string
    }
    
    // VolumeInfo contains information about the volume.
    type VolumeInfo struct {
    	// Mounter is the volume's mounter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

    # A helper function that bind mounts kubelet dirs for running mount in a chroot
    function prepare-mounter-rootfs {
      echo "Prepare containerized mounter"
      mount --bind "${CONTAINERIZED_MOUNTER_HOME}" "${CONTAINERIZED_MOUNTER_HOME}"
      mount -o remount,exec "${CONTAINERIZED_MOUNTER_HOME}"
      CONTAINERIZED_MOUNTER_ROOTFS="${CONTAINERIZED_MOUNTER_HOME}/rootfs"
      mount --rbind /var/lib/kubelet/ "${CONTAINERIZED_MOUNTER_ROOTFS}/var/lib/kubelet"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: the global --rootfs flag is now considered non-experimental. ([#124375](https://github.com/kubernetes/kubernetes/pull/124375), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

    - Fixed `kubectl explain` to show enum for field types if they were defined. ([#123023](https://github.com/kubernetes/kubernetes/pull/123023), [@ah8ad3](https://github.com/ah8ad3))
    - Fixed a bug in kubeadm where the `--rootfs` global flag didn't work with "kubeadm upgrade node" for control plane nodes. ([#123077](https://github.com/kubernetes/kubernetes/pull/123077), [@neolit123](https://github.com/neolit123))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    		return fmt.Errorf("error creating root directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPodLogsDir(), 0750); err != nil {
    		return fmt.Errorf("error creating pod logs root directory %q: %w", kl.getPodLogsDir(), err)
    	}
    	if err := kl.hostutil.MakeRShared(kl.getRootDir()); err != nil {
    		return fmt.Errorf("error configuring root directory: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

                throw UnsupportedOperationException()
    
            override fun visitFileTree(root: File, patterns: PatternSet, fileTree: FileTreeInternal) {
                roots.add(DirectoryTreeSpec(root, patterns))
            }
    
            override fun visitFileTreeBackedByFile(file: File, fileTree: FileTreeInternal, sourceTree: FileSystemMirroringFileTree) {
                roots.add(toSpec(sourceTree))
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

            }
        }
    
        private fun getVirtualFileUrlsForLibraryRootsRecursively(
            roots: Collection<Path>,
            environment: KotlinCoreProjectEnvironment,
        ): Set<String> =
            buildSet {
                for (root in getVirtualFilesForLibraryRoots(roots, environment)) {
                    LibraryUtils.getAllVirtualFilesFromRoot(root, includeRoot = true)
                        .mapTo(this) { it.url }
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  8. istioctl/cmd/root.go

    const (
    	FlagCharts = "charts"
    )
    
    // ConfigAndEnvProcessing uses spf13/viper for overriding CLI parameters
    func ConfigAndEnvProcessing() error {
    	configPath := filepath.Dir(root.IstioConfig)
    	baseName := filepath.Base(root.IstioConfig)
    	configType := filepath.Ext(root.IstioConfig)
    	configName := baseName[0 : len(baseName)-len(configType)]
    	if configType != "" {
    		configType = configType[1:]
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    			}
    			continue
    		}
    
    		roots = append(roots, r.Mod)
    		if !r.Indirect {
    			direct[r.Mod.Path] = true
    		}
    	}
    	goVersion := gover.FromGoMod(modFile)
    	var toolchain string
    	if addToolchainRoot && modFile.Toolchain != nil {
    		toolchain = modFile.Toolchain.Name
    	}
    	roots = appendGoAndToolchainRoots(roots, goVersion, toolchain, direct)
    	return roots, direct
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. cni/pkg/cmd/root.go

    John Howard <******@****.***> 1718209595 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top