Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for externalDep (0.23 sec)

  1. pkg/printers/internalversion/printers.go

    	if len(obj.Spec.ClusterIPs) > 0 {
    		internalIP = obj.Spec.ClusterIPs[0]
    	}
    
    	externalIP := getServiceExternalIP(obj, options.Wide)
    	svcPorts := makePortString(obj.Spec.Ports)
    	if len(svcPorts) == 0 {
    		svcPorts = "<none>"
    	}
    
    	row.Cells = append(row.Cells, obj.Name, string(svcType), internalIP, externalIP, svcPorts, translateTimestampSince(obj.CreationTimestamp))
    	if options.Wide {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"test3", "LoadBalancer", "10.9.8.7", "<pending>", "8888/tcp", "<unknown>"}}},
    		},
    		{
    			// Test LoadBalancer service with single ExternalIP and no LoadBalancerStatus
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "test4"},
    				Spec: api.ServiceSpec{
    					Type: api.ServiceTypeLoadBalancer,
    					Ports: []api.ServicePort{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    			svc.Spec.ClusterIP = "172.30.0.43"
    			svc.Spec.Ports = []v1.ServicePort{{
    				Name:     "p80",
    				Port:     80,
    				Protocol: v1.ProtocolTCP,
    				NodePort: 3003,
    			}}
    		}),
    		// create ExternalIP service
    		makeTestService("ns4", "svc4", func(svc *v1.Service) {
    			svc.Spec.Type = "NodePort"
    			svc.Spec.ClusterIP = "172.30.0.44"
    			svc.Spec.ExternalIPs = []string{"192.168.99.33"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.5.md

    * The apiserver now uses addresses reported by the kubelet in the Node object's status for apiserver->kubelet communications, rather than the name of the Node object. The address type used defaults to `InternalIP`, `ExternalIP`, and `LegacyHostIP` address types, in that order. ([#33718](https://github.com/kubernetes/kubernetes/pull/33718), [@justinsb](https://github.com/justinsb))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name: "InternalIP is preferred over ExternalIP",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeExternalIP, Address: "192.168.0.1"},
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// to an internal node IP rather than being delivered directly (making the IP less
    	// efficient for node-to-node traffic than a NodeInternalIP).
    	NodeExternalIP NodeAddressType = "ExternalIP"
    
    	// NodeInternalDNS identifies a DNS name which resolves to an IP address which has
    	// the characteristics of a NodeInternalIP. The IP it resolves to may or may not
    	// be a listed NodeInternalIP address.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional NodeStatus status = 3;
    }
    
    // NodeAddress contains information for the node's address.
    message NodeAddress {
      // Node address type, one of Hostname, ExternalIP or InternalIP.
      optional string type = 1;
    
      // The node address.
      optional string address = 2;
    }
    
    // Node affinity is a group of node affinity scheduling rules.
    message NodeAffinity {
    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. pkg/apis/core/types.go

    	// to an internal node IP rather than being delivered directly (making the IP less
    	// efficient for node-to-node traffic than a NodeInternalIP).
    	NodeExternalIP NodeAddressType = "ExternalIP"
    
    	// NodeInternalDNS identifies a DNS name which resolves to an IP address which has
    	// the characteristics of a NodeInternalIP. The IP it resolves to may or may not
    	// be a listed NodeInternalIP address.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_Node
    }
    
    var map_NodeAddress = map[string]string{
    	"":        "NodeAddress contains information for the node's address.",
    	"type":    "Node address type, one of Hostname, ExternalIP or InternalIP.",
    	"address": "The node address.",
    }
    
    func (NodeAddress) SwaggerDoc() map[string]string {
    	return map_NodeAddress
    }
    
    var map_NodeAffinity = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional NodeStatus status = 3;
    }
    
    // NodeAddress contains information for the node's address.
    message NodeAddress {
      // Node address type, one of Hostname, ExternalIP or InternalIP.
      optional string type = 1;
    
      // The node address.
      optional string address = 2;
    }
    
    // Node affinity is a group of node affinity scheduling rules.
    message NodeAffinity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top