Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Violations (0.11 sec)

  1. pkg/kubelet/kubelet_pods.go

    			restartCountStatic++
    		} else {
    			// almost certainly means shenanigans, as API pods should never have the same UID after being deleted and recreated
    			// unless there is a major API violation
    			restartCount++
    		}
    	}
    	metrics.RestartedPodTotal.WithLabelValues("true").Add(float64(restartCountStatic))
    	metrics.RestartedPodTotal.WithLabelValues("").Add(float64(restartCount))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	}
    	if len(runningContainers) > 0 {
    		return fmt.Errorf("detected running containers after a successful KillPod, CRI violation: %v", runningContainers)
    	}
    
    	// NOTE: resources must be unprepared AFTER all containers have stopped
    	// and BEFORE the pod status is changed on the API server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top