Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for pdkill (0.29 sec)

  1. hack/local-up-cluster.sh

      if [[ -n "${KUBELET_PID-}" ]] && ! sudo kill -0 "${KUBELET_PID}" 2>/dev/null; then
        warning_log "kubelet terminated unexpectedly, see ${KUBELET_LOG}"
        KUBELET_PID=
      fi
    
      if [[ -n "${PROXY_PID-}" ]] && ! sudo kill -0 "${PROXY_PID}" 2>/dev/null; then
        warning_log "kube-proxy terminated unexpectedly, see ${PROXY_LOG}"
        PROXY_PID=
      fi
    
      if [[ -n "${SCHEDULER_PID-}" ]] && ! sudo kill -0 "${SCHEDULER_PID}" 2>/dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// If the container failed the liveness probe, we should kill it.
    			message = fmt.Sprintf("Container %s failed liveness probe", container.Name)
    			reason = reasonLivenessProbe
    		} else if startup, found := m.startupManager.Get(containerStatus.ID); found && startup == proberesults.Failure {
    			// If the container failed the startup probe, we should kill it.
    			message = fmt.Sprintf("Container %s failed startup probe", container.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		{name: containers[1].Name, attempt: 0, state: runtimeapi.ContainerState_CONTAINER_EXITED},
    	}
    	verifyContainerStatuses(t, fakeRuntime, expected, "kill all app containers, purge the existing init container, and restart a new one")
    }
    
    // A helper function to get a basic pod and its status assuming all sandbox and
    // containers are running and ready.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers_test.go

    		return
    	}
    	for i := 0; i < numPods; i++ {
    		uid := types.UID(strconv.Itoa(i))
    		// each pod should be processed two or three times (kill,terminate or create,kill,terminate) because
    		// we buffer pending updates and the pod worker may compress the create and kill
    		syncPodRecords := processed[uid]
    		var match bool
    		grace := int64(30)
    		for _, possible := range [][]syncPodRecord{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller.go

    					continue
    				}
    
    				dsc.failedPodsBackoff.Next(backoffKey, now)
    
    				msg := fmt.Sprintf("Found failed daemon pod %s/%s on node %s, will try to kill it", pod.Namespace, pod.Name, node.Name)
    				logger.V(2).Info("Found failed daemon pod on node, will try to kill it", "pod", klog.KObj(pod), "node", klog.KObj(node))
    				// Emit an event so that it's discoverable to users.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. src/os/os_test.go

    	}
    	w.Close()
    
    	var b strings.Builder
    	io.Copy(&b, r)
    	_, err = p.Wait()
    	if err != nil {
    		t.Fatalf("run hostname Wait: %v", err)
    	}
    	err = p.Kill()
    	if err == nil {
    		t.Errorf("expected an error from Kill running 'hostname'")
    	}
    	output := b.String()
    	if n := len(output); n > 0 && output[n-1] == '\n' {
    		output = output[0 : n-1]
    	}
    	if output == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			if err := m.killContainer(ctx, pod, kubeContainerID, container.Name, "FailedPostStartHook", reasonFailedPostStartHook, nil, nil); err != nil {
    				klog.ErrorS(err, "Failed to kill container", "pod", klog.KObj(pod),
    					"podUID", pod.UID, "containerName", container.Name, "containerID", kubeContainerID.String())
    			}
    			return msg, ErrPostStartHook
    		}
    	}
    
    	return "", nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  8. src/syscall/zerrors_solaris_amd64.go

    	VEOF                          = 0x4
    	VEOL                          = 0x5
    	VEOL2                         = 0x6
    	VERASE                        = 0x2
    	VINTR                         = 0x0
    	VKILL                         = 0x3
    	VLNEXT                        = 0xf
    	VMIN                          = 0x4
    	VQUIT                         = 0x1
    	VREPRINT                      = 0xc
    	VSTART                        = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

      # the restart count to 0 each time, so we re-use our restart/10000 action on
      # each failure. Note it currently restarts even when explicitly stopped, you
      # have to delete the service entry to *really* kill it (e.g. `sc.exe delete
      # kubelet`). See issue #72900.
      if (Get-Process | Where-Object Name -eq "kubelet") {
        Log-Output -Fatal `
            "A kubelet process is already running, don't know what to do"
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_test.go

    			IP:   net.IPv4(127, 0, 0, 1),
    			Port: serverPort,
    		})
    		if err == nil {
    			break
    		}
    		time.Sleep((1 << i) * 5 * time.Millisecond)
    	}
    	if err != nil {
    		close(stdin)
    		cmd.Process.Kill()
    		err = fmt.Errorf("error connecting to the OpenSSL server: %v (%v)\n\n%s", err, cmd.Wait(), out)
    		return nil, nil, nil, nil, err
    	}
    
    	record := &recordingConn{
    		Conn: tcpConn,
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top