Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 561 for podIps (0.19 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.yaml

          waiting:
            message: messageValue
            reason: reasonValue
      message: messageValue
      nominatedNodeName: nominatedNodeNameValue
      phase: phaseValue
      podIP: podIPValue
      podIPs:
      - ip: ipValue
      qosClass: qosClassValue
      reason: reasonValue
      resize: resizeValue
      resourceClaimStatuses:
      - name: nameValue
        resourceClaimName: resourceClaimNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 32.3K bytes
    - Viewed (0)
  2. pkg/controller/endpoint/endpoints_controller.go

    			if utilnet.IsIPv6String(pod.Status.PodIP) {
    				ipFamily = v1.IPv6Protocol
    			}
    		}
    	}
    
    	// find an ip that matches the family
    	for _, podIP := range pod.Status.PodIPs {
    		if (ipFamily == v1.IPv6Protocol) == utilnet.IsIPv6String(podIP.IP) {
    			endpointIP = podIP.IP
    			break
    		}
    	}
    
    	if endpointIP == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/kube.go

    func (i *istioImpl) PodIPsFor(c cluster.Cluster, namespace string, label string) ([]corev1.PodIP, error) {
    	// Find the pod with the specified label in the specified namespace
    	fetchFn := testKube.NewSinglePodFetch(c, namespace, label)
    	pods, err := testKube.WaitUntilPodsAreReady(fetchFn)
    	if err != nil {
    		return nil, err
    	}
    
    	pod := pods[0]
    	return pod.Status.PodIPs, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. pkg/quota/v1/evaluator/core/pods.go

    	// where "pods" tracks all pods that have not reached a terminal state,
    	// count/pods tracks all pods independent of state.
    	result := corev1.ResourceList{
    		podObjectCountName: *(resource.NewQuantity(1, resource.DecimalSI)),
    	}
    
    	// by convention, we do not quota compute resources that have reached end-of life
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/interpodaffinity/plugin.go

    		}
    		logger.V(5).Info("a scheduled pod was updated but it doesn't match the target pod's affinity or does match the target pod's anti-affinity",
    			"pod", klog.KObj(pod), "modifiedPod", klog.KObj(modifiedPod))
    		return framework.QueueSkip, nil
    	}
    
    	// Pod is added. Return Queue when the added pod matching the target pod's affinity.
    	if modifiedPod != nil {
    		if podMatchesAllAffinityTerms(terms, modifiedPod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 03:08:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. pkg/kube/krt/collection_test.go

    	Named
    	Labeled
    	IP string
    }
    
    func SimplePodCollection(pods krt.Collection[*corev1.Pod]) krt.Collection[SimplePod] {
    	return krt.NewCollection(pods, func(ctx krt.HandlerContext, i *corev1.Pod) *SimplePod {
    		if i.Status.PodIP == "" {
    			return nil
    		}
    		return &SimplePod{
    			Named:   NewNamed(i),
    			Labeled: NewLabeled(i.Labels),
    			IP:      i.Status.PodIP,
    		}
    	})
    }
    
    type SizedPod struct {
    	Named
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authorizer/node/graph_test.go

    		"node:node3":            {},
    		"pod:ns/pod1":           {"node:node1"},
    		"pod:ns/pod2":           {"node:node2"},
    		"pod:ns/pod3":           {"node:node3"},
    		"configmap:ns/cm1":      {"pod:ns/pod1", "pod:ns/pod2", "pod:ns/pod3"},
    		"configmap:ns/cm2":      {"pod:ns/pod1", "pod:ns/pod2", "pod:ns/pod3"},
    		"configmap:ns/cm3":      {"pod:ns/pod1", "pod:ns/pod2", "pod:ns/pod3"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/pod_test.go

    	}
    	fx.Clear()
    }
    
    func cleanup(ki kubernetes.Interface) {
    	for _, n := range []string{"nsa", "nsb"} {
    		n := n
    		pods, err := ki.CoreV1().Pods(n).List(context.TODO(), metav1.ListOptions{})
    		if err == nil {
    			// Make sure the pods don't exist
    			for _, pod := range pods.Items {
    				_ = ki.CoreV1().Pods(pod.Namespace).Delete(context.TODO(), pod.Name, metav1.DeleteOptions{})
    			}
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 18:27:40 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/storage/eviction_test.go

    			expectError: "Cannot evict pod as it would violate the pod's disruption budget.: TooManyRequests: The disruption budget foo needs 0 healthy pods and has 0 currently",
    			podPhase:    api.PodRunning,
    			podName:     "t1",
    			policies:    []*policyv1.UnhealthyPodEvictionPolicyType{nil, unhealthyPolicyPtr(policyv1.IfHealthyBudget)}, // AlwaysAllow would terminate the pod since Running pods are not guarded by this policy
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/pod_container_manager_linux.go

    func (m *podContainerManagerImpl) GetPodContainerName(pod *v1.Pod) (CgroupName, string) {
    	podQOS := v1qos.GetPodQOS(pod)
    	// Get the parent QOS container name
    	var parentContainer CgroupName
    	switch podQOS {
    	case v1.PodQOSGuaranteed:
    		parentContainer = m.qosContainersInfo.Guaranteed
    	case v1.PodQOSBurstable:
    		parentContainer = m.qosContainersInfo.Burstable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top