Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for creading (0.23 sec)

  1. pkg/kubelet/kubelet.go

    		return fmt.Errorf("error creating pods directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPluginsDir(), 0750); err != nil {
    		return fmt.Errorf("error creating plugins directory: %v", err)
    	}
    	if err := os.MkdirAll(kl.getPluginsRegistrationDir(), 0750); err != nil {
    		return fmt.Errorf("error creating plugins registry 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)
  2. pkg/kubelet/kubelet_pods.go

    	mountEtcHostsFile := shouldMountHostsFile(pod, podIPs)
    	klog.V(3).InfoS("Creating hosts mount for container", "pod", klog.KObj(pod), "containerName", container.Name, "podIPs", podIPs, "path", mountEtcHostsFile)
    	mounts := []kubecontainer.Mount{}
    	var cleanupAction func()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    		srcInfo.metadataOnly = true
    		srcInfo.keyRotation = true
    	} else {
    		if isSourceEncrypted || isTargetEncrypted {
    			// We are not only copying just metadata instead
    			// we are creating a new object at this point, even
    			// if source and destination are same objects.
    			if !srcInfo.keyRotation {
    				srcInfo.metadataOnly = false
    			}
    		}
    
    		// Calculate the size of the target object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top