Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for pod3 (0.43 sec)

  1. pkg/kubelet/kubelet_test.go

    	// resources)
    	pods[7].Status.Phase = v1.PodFailed
    	kubelet.podWorkers.(*fakePodWorkers).terminationRequested = map[types.UID]bool{
    		pods[7].UID: true,
    	}
    
    	expected := []*v1.Pod{pods[2], pods[3], pods[4], pods[7]}
    	kubelet.podManager.SetPods(pods)
    	actual := kubelet.filterOutInactivePods(pods)
    	assert.Equal(t, expected, actual)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    // or are known to be fully terminated. This method should only be used
    // when the set of pods being filtered is upstream of the pod worker, i.e.
    // the pods the pod manager is aware of.
    func (kl *Kubelet) filterOutInactivePods(pods []*v1.Pod) []*v1.Pod {
    	filteredPods := make([]*v1.Pod, 0, len(pods))
    	for _, p := range pods {
    		// if a pod is fully terminated by UID, it should be excluded from the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. docs/pt/docs/advanced/benchmarks.md

    * **Starlette**:
        * Terá o melhor desempenho, depois do Uvicorn. Na verdade, o Starlette utiliza o Uvicorn para rodar. Portanto, ele pode ficar mais "devagar" que o Uvicorn apenas por ter que executar mais código.
        * Mas ele fornece as ferramentas para construir aplicações web simples, com roteamento baseado em caminhos, etc.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    	Namespaces krt.Collection[*v1.Namespace],
    	Nodes krt.Collection[*v1.Node],
    ) krt.TransformationSingle[*v1.Pod, model.WorkloadInfo] {
    	return func(ctx krt.HandlerContext, p *v1.Pod) *model.WorkloadInfo {
    		// Pod Is Pending but have a pod IP should be a valid workload, we should build it ,
    		// Such as the pod have initContainer which is initialing.
    		// See https://github.com/istio/istio/issues/48854
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    	if s.isK8SSigning() {
    		// Need to distribute the roots from MeshConfig
    		return true
    	}
    	if s.CA == nil {
    		return false
    	}
    
    	// For Kubernetes CA, we don't distribute it; it is mounted in all pods by Kubernetes.
    	// This is never called - isK8SSigning is true.
    	if features.PilotCertProvider == constants.CertProviderKubernetes {
    		return false
    	}
    	// For no CA we don't distribute it either, as there is no cert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top