Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for HostIP (0.26 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.HostIP)(nil), (*core.HostIP)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_HostIP_To_core_HostIP(a.(*v1.HostIP), b.(*core.HostIP), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.HostIP)(nil), (*v1.HostIP)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	}
    
    	hostIPsField := field.NewPath("status", "hostIPs")
    
    	// hostIP must be equal to hostIPs[0].IP
    	if pod.Status.HostIP != pod.Status.HostIPs[0].IP {
    		allErrs = append(allErrs, field.Invalid(hostIPsField.Index(0).Child("ip"), pod.Status.HostIPs[0].IP, "must be equal to `hostIP`"))
    	}
    
    	// all HostPs must be valid IPs
    	for i, hostIP := range pod.Status.HostIPs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	// +optional
    	NominatedNodeName string
    
    	// HostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet.
    	// A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will
    	// not be updated even if there is a node is assigned to pod
    	// +optional
    	HostIP string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// hostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet.
    	// A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will
    	// not be updated even if there is a node is assigned to pod
    	// +optional
    	HostIP string `json:"hostIP,omitempty" protobuf:"bytes,5,opt,name=hostIP"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"hostIP":                     "hostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet. A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will not be updated even if there is a node is assigned to pod",
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string nominatedNodeName = 11;
    
      // hostIP holds the IP address of the host to which the pod is assigned. Empty if the pod has not started yet.
      // A pod can be assigned to a node that has a problem in kubelet which in turns mean that HostIP will
      // not be updated even if there is a node is assigned to pod
      // +optional
      optional string hostIP = 5;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // Defaults to "TCP".
      // +optional
      // +default="TCP"
      optional string protocol = 4;
    
      // What host IP to bind the external port to.
      // +optional
      optional string hostIP = 5;
    }
    
    // ContainerResizePolicy represents resource resize policy for the container.
    message ContainerResizePolicy {
      // Name of the resource to which this resource resize policy applies.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.20.md

    ### Failing Test
    
    - Kubelet: the HostPort implementation in dockershim was not taking into consideration the HostIP field, causing that the same HostPort can not be used with different IP addresses.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.21.md

    ### Failing Test
    
    - Kubelet: the HostPort implementation in dockershim was not taking into consideration the HostIP field, causing that the same HostPort can not be used with different IP addresses.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.7.md

      * Disk Pressure triggers the deletion of terminated containers on the node. ([#45896](https://github.com/kubernetes/kubernetes/pull/45896), [@dashpole](https://github.com/dashpole))
    
      * Support status.hostIP in downward API ([#42717](https://github.com/kubernetes/kubernetes/pull/42717), [@andrewsykim](https://github.com/andrewsykim))
    
      * Upgrade Node Problem Detector to v0.4.1. New features added:
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
Back to top