Kubernetes go-client:獲取Pod 詳細信息,如“kubectl get pods”
使用Kubernetes 客戶端獲取詳細信息集資訊-go,請依照下列步驟操作:
建立Pod 介面: 使用client-go 的PodInterface 來管理特定命名空間中的pod。
<code class="go">podInterface := client.KubeClient.CoreV1().Pods(namespace)</code>
列出 Pod: 擷取命名空間中的所有 pod。
<code class="go">podList, err := podInterface.List(context.TODO(), v1.ListOptions{})</code>
迭代 Pod:迭代檢索到的 pod 列表以提取特定的詳細信息,如名稱、狀態、就緒狀態、重新啟動和年齡。
<code class="go">for _, pod := range podList.Items { // Calculate pod age age := time.Since(pod.GetCreationTimestamp().Time).Round(time.Second) // Get pod status podStatus := pod.Status // Accumulate container stats var containerRestarts, containerReady, totalContainers int32 for range pod.Spec.Containers { // Add restart count from container status containerRestarts += podStatus.ContainerStatuses[container].RestartCount // Calculate number of ready containers if podStatus.ContainerStatuses[container].Ready { containerReady++ } totalContainers++ } }</code>
這種方法有效地產生一個類似於' 的輸出的表kubectl get pods -n '包含所需的詳細信息,包括所選命名空間中每個Pod 的名稱、就緒狀態、狀態、重新啟動和壽命。
以上是如何使用 Kubernetes Go 用戶端檢索詳細的 Pod 資訊(如「kubectl get pods」)?的詳細內容。更多資訊請關注PHP中文網其他相關文章!