Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for rootfs (0.12 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. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultCapabilitiesConflictHandler.java

                }
                if (rootId != null && candidatesForConflict.size() > 1) {
                    // This is a special case for backwards compatibility: it is possible to have
                    // a cycle where the root component depends on a library which transitively
                    // depends on a different version of the root module. In this case, we effectively
                    // allow 2 modules to have the same capability, so we filter the nodes coming
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/certcontroller.go

    		log.Infof("Use roots from %v and watch", fileBundle.RootCertFile)
    
    		caBundle = s.CA.GetCAKeyCertBundle().GetRootCertPem()
    		// Similar code to istio-ca-secret: refresh the root cert, but in casecrets
    		s.addStartFunc("istiod server certificate rotation", func(stop <-chan struct{}) error {
    			go func() {
    				// regenerate istiod key cert when root cert changes.
    				s.watchRootCertAndGenKeyCert(stop)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. internal/kms/config.go

    		if err != nil {
    			return nil, err
    		}
    
    		key, err := kms.ParseAPIKey(env.Get(EnvKMSAPIKey, ""))
    		if err != nil {
    			return nil, err
    		}
    
    		var rootCAs *x509.CertPool
    		if opts != nil && opts.CADir != "" {
    			rootCAs, err = certs.GetRootCAs(opts.CADir)
    			if err != nil {
    				return nil, err
    			}
    		}
    
    		client, err := kms.NewClient(&kms.Config{
    			Endpoints: endpoints,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top