Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KUBE_COVERAGE_FILE (0.26 sec)

  1. pkg/util/coverage/coverage.go

    // Clients should never need to call it.
    func InitCoverage(name string) {
    	// We read the coverage destination in from the KUBE_COVERAGE_FILE env var,
    	// or if it's empty we just use a default in /tmp
    	coverageFile = os.Getenv("KUBE_COVERAGE_FILE")
    	if coverageFile == "" {
    		coverageFile = "/tmp/k8s-" + name + ".cov"
    	}
    	fmt.Println("Dumping coverage information to " + coverageFile)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 21:00:21 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

      fi
    
      local kubelet_opts="${KUBELET_ARGS} ${KUBELET_CONFIG_FILE_ARG:-} ${kubelet_cgroup_driver:-}"
      echo "KUBELET_OPTS=\"${kubelet_opts}\"" > "${kubelet_env_file}"
      echo "KUBE_COVERAGE_FILE=\"/var/log/kubelet.cov\"" >> "${kubelet_env_file}"
    
      # Write the systemd service file for kubelet.
      cat <<EOF >/etc/systemd/system/kubelet.service
    [Unit]
    Description=Kubernetes 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)
Back to top