Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for extractRevisionFromPod (0.2 sec)

  1. istioctl/pkg/injector/injector-list.go

    func podCountByRevision(pods []corev1.Pod, expectedRevision string) map[string]revisionCount {
    	retval := map[string]revisionCount{}
    	for _, pod := range pods {
    		revision := extractRevisionFromPod(&pod)
    		revisionLabel := revision
    		if revision == "" {
    			revisionLabel = "<non-Istio>"
    		}
    		counts := retval[revisionLabel]
    		counts.pods++
    		if injectionDisabled(&pod) {
    			counts.disabled++
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 03:08:06 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top