Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for podMap (0.22 sec)

  1. 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)
  2. 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)
  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. 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/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"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    // PodDNSConfigOption defines DNS resolver options of a pod.
    type PodDNSConfigOption struct {
    	// Required.
    	Name string
    	// +optional
    	Value *string
    }
    
    // PodIP represents a single IP address allocated to the pod.
    type PodIP struct {
    	// IP is the IP address assigned to the pod
    	IP string
    }
    
    // HostIP represents a single IP address allocated to the host.
    type HostIP struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage_test.go

    		},
    		Status: api.PodStatus{
    			PodIPs: []api.PodIP{},
    		},
    	}
    
    	for _, ip := range ips {
    		p.Status.PodIPs = append(p.Status.PodIPs, api.PodIP{IP: ip})
    	}
    
    	return p
    }
    
    func TestServiceRegistryResourceLocation(t *testing.T) {
    	pods := []api.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  9. 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