Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,389 for podIps (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/apis/core/zz_generated.deepcopy.go

    func (in *PodIP) DeepCopyInto(out *PodIP) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodIP.
    func (in *PodIP) DeepCopy() *PodIP {
    	if in == nil {
    		return nil
    	}
    	out := new(PodIP)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *PodIP) DeepCopyInto(out *PodIP) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PodIP.
    func (in *PodIP) DeepCopy() *PodIP {
    	if in == nil {
    		return nil
    	}
    	out := new(PodIP)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // +listType=atomic
      repeated HostIP hostIPs = 16;
    
      // podIP address allocated to the pod. Routable at least within the cluster.
      // Empty if not yet allocated.
      // +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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podos.go

    	v1 "k8s.io/api/core/v1"
    )
    
    // PodOSApplyConfiguration represents an declarative configuration of the PodOS type for use
    // with apply.
    type PodOSApplyConfiguration struct {
    	Name *v1.OSName `json:"name,omitempty"`
    }
    
    // PodOSApplyConfiguration constructs an declarative configuration of the PodOS type for use with
    // apply.
    func PodOS() *PodOSApplyConfiguration {
    	return &PodOSApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 28 21:31:52 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podip.go

    package v1
    
    // PodIPApplyConfiguration represents an declarative configuration of the PodIP type for use
    // with apply.
    type PodIPApplyConfiguration struct {
    	IP *string `json:"ip,omitempty"`
    }
    
    // PodIPApplyConfiguration constructs an declarative configuration of the PodIP type for use with
    // apply.
    func PodIP() *PodIPApplyConfiguration {
    	return &PodIPApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top