Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for externalDep (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.11.md

    * You can now receive node DNS info with the `--node-ip` flag, which adds `ExternalDNS`, `InternalDNS`, and `ExternalIP` to kubelet's output. ([#63170](https://github.com/kubernetes/kubernetes/pull/63170), [@micahhausler](https://github.com/micahhausler))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
Back to top