Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 807 for podIps (0.15 sec)

  1. pilot/pkg/serviceregistry/serviceregistry_test.go

    	// events - since PodIP will be "".
    	newPod.Status.PodIP = pod.Status.PodIP
    	newPod.Status.PodIPs = []v1.PodIP{
    		{
    			IP: pod.Status.PodIP,
    		},
    	}
    	newPod.Status.Phase = v1.PodRunning
    
    	// Also need to sets the pod to be ready as now we only add pod into service entry endpoint when it's ready
    	setPodReady(newPod)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "podIP": {
              "description": "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.",
              "type": "string"
            },
            "podIPs": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    		},
    		Status: core.PodStatus{
    			PodIPs: podIPs,
    		},
    	}
    }
    func TestPodIPsValidation(t *testing.T) {
    	testCases := []struct {
    		pod         core.Pod
    		expectError bool
    	}{{
    		expectError: false,
    		pod:         makePod("nil-ips", "ns", nil),
    	}, {
    		expectError: false,
    		pod:         makePod("empty-podips-list", "ns", []core.PodIP{}),
    	}, {
    		expectError: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers.go

    	if options.Wide {
    		nodeName := pod.Spec.NodeName
    		nominatedNodeName := pod.Status.NominatedNodeName
    		podIP := ""
    		if len(pod.Status.PodIPs) > 0 {
    			podIP = pod.Status.PodIPs[0].IP
    		}
    
    		if podIP == "" {
    			podIP = "<none>"
    		}
    		if nodeName == "" {
    			nodeName = "<none>"
    		}
    		if nominatedNodeName == "" {
    			nominatedNodeName = "<none>"
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    			handler.HandlePodUpdates(u.Pods)
    		case kubetypes.REMOVE:
    			klog.V(2).InfoS("SyncLoop REMOVE", "source", u.Source, "pods", klog.KObjSlice(u.Pods))
    			handler.HandlePodRemoves(u.Pods)
    		case kubetypes.RECONCILE:
    			klog.V(4).InfoS("SyncLoop RECONCILE", "source", u.Source, "pods", klog.KObjSlice(u.Pods))
    			handler.HandlePodReconcile(u.Pods)
    		case kubetypes.DELETE:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string podIP = 6;
    
      // podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must
      // match the podIP field. Pods may be allocated at most 1 value for each of IPv4 and IPv6. This list
      // is empty if no IPs have been allocated yet.
      // +optional
      // +patchStrategy=merge
      // +patchMergeKey=ip
      repeated PodIP podIPs = 12;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// podIP address allocated to the pod. Routable at least within the cluster.
    	// Empty if not yet allocated.
    	// +optional
    	PodIP string `json:"podIP,omitempty" protobuf:"bytes,6,opt,name=podIP"`
    
    	// podIPs holds the IP addresses allocated to the pod. If this field is specified, the 0th entry must
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	pc := clienttest.Wrap(t, controller.podsClient)
    	for _, pod := range pods {
    		newPod := pc.CreateOrUpdate(pod)
    		setPodReady(newPod)
    		// Apiserver doesn't allow Create/Update to modify the pod status. Creating doesn't result in
    		// events - since PodIP will be "".
    		newPod.Status.PodIP = pod.Status.PodIP
    		newPod.Status.Phase = corev1.PodRunning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// match the hostIP field. This list is empty if no IPs have been allocated yet.
    	// +optional
    	HostIPs []HostIP
    
    	// PodIPs holds all of the known IP addresses allocated to the pod. Pods may be assigned AT MOST
    	// one value for each of IPv4 and IPv6.
    	// +optional
    	PodIPs []PodIP
    
    	// Date and time at which the object was acknowledged by the Kubelet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"podIP":                      "podIP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top