Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for partition (0.15 sec)

  1. CHANGELOG/CHANGELOG-1.5.md

    * Pods that are terminating due to eviction by the nodecontroller (typically due to unresponsive kubelet, or network partition) now surface in `kubectl get` output  ([#36017](https://github.com/kubernetes/kubernetes/pull/36017), [@foxish](https://github.com/foxish))
        * as being in state "Unknown", along with a longer description in `kubectl describe` output.
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  2. cmd/admin-handlers.go

    			anonymizeAddr(&localPartitions)
    			healthInfo.Sys.Partitions = append(healthInfo.Sys.Partitions, localPartitions)
    
    			peerPartitions := globalNotificationSys.GetPartitions(healthCtx)
    			for _, p := range peerPartitions {
    				anonymizeAddr(&p)
    				healthInfo.Sys.Partitions = append(healthInfo.Sys.Partitions, p)
    			}
    			partialWrite(healthInfo)
    		}
    	}
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
Back to top