Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for modzip (0.63 sec)

  1. pkg/proxy/iptables/proxier_test.go

    			fp.syncProxyRules()
    
    			var podIP, externalClientIP, nodeIP, altNodeIP, localhostIP string
    			if tc.family == v1.IPv4Protocol {
    				podIP = "10.0.0.2"
    				externalClientIP = testExternalClient
    				nodeIP = testNodeIP
    				altNodeIP = testNodeIPAlt
    				localhostIP = "127.0.0.1"
    			} else {
    				podIP = "fd00:10::2"
    				externalClientIP = "2600:5200::1"
    				nodeIP = testNodeIPv6
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.PodIP)(nil), (*core.PodIP)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_PodIP_To_core_PodIP(a.(*v1.PodIP), b.(*core.PodIP), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.PodIP)(nil), (*v1.PodIP)(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)
  3. 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)
  4. 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)
  5. CHANGELOG/CHANGELOG-1.29.md

    - The `--bind-address` parameter in kube-proxy is misleading, no port is opened with this address. Instead it is translated internally to "nodeIP". The nodeIPs for both families are now taken from the Node object if `--bind-address` is unspecified or set to the "any" address (0.0.0.0 or ::). It is recommended to leave `--bind-address` unspecified, and in particular avoid to set it to localhost...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. prow/config/calico.yaml

                    description: BindMode indicates whether to listen for BGP connections
                      on all addresses (None) or only on the node's canonical IP address
                      Node.Spec.BGP.IPvXAddress (NodeIP). Default behaviour is to listen
                      for BGP connections on all addresses.
                    type: string
                  communities:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - Fixed CSI `PersistentVolumes` to allow Secrets names longer than 63 characters. ([#114776](https://github.com/kubernetes/kubernetes/pull/114776), [@jsafrane](https://github.com/jsafrane))
    - Fixed Route controller to update routes when NodeIP changes ([#108095](https://github.com/kubernetes/kubernetes/pull/108095), [@lzhecheng](https://github.com/lzhecheng))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    	// all PodIPs must be valid IPs
    	for i, podIP := range pod.Status.PodIPs {
    		allErrs = append(allErrs, validation.IsValidIP(podIPsField.Index(i), podIP.IP)...)
    	}
    
    	// if we have more than one Pod.PodIP then
    	// - validate for dual stack
    	// - validate for duplication
    	if len(pod.Status.PodIPs) > 1 {
    		podIPs := make([]string, 0, len(pod.Status.PodIPs))
    		for _, podIP := range pod.Status.PodIPs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.25.md

    - Fix: Route controller should update routes with NodeIP changed ([#116361](https://github.com/kubernetes/kubernetes/pull/116361), [@lzhecheng](https://github.com/lzhecheng)) [SIG Cloud Provider]
    - Fixes a regression in the pod binding subresource to honor the `metadata.uid` precondition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                ],
                "description": "Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['<KEY>']`, `metadata.annotations['<KEY>']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs."
              },
              "resourceFieldRef": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.ResourceFieldSelector"
                  }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
Back to top