Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for externalDep (0.27 sec)

  1. pkg/proxy/serviceport.go

    	HintsAnnotation() string
    	// ExternallyAccessible returns true if the service port is reachable via something
    	// other than ClusterIP (NodePort/ExternalIP/LoadBalancer)
    	ExternallyAccessible() bool
    	// UsesClusterEndpoints returns true if the service port ever sends traffic to
    	// endpoints based on "Cluster" traffic policy
    	UsesClusterEndpoints() bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    			}
    		}
    		internalTrafficChain := internalPolicyChain
    
    		// Similarly, externalPolicyChain is the chain containing the endpoints
    		// for "external" (NodePort, LoadBalancer, and ExternalIP) traffic.
    		// externalTrafficChain is the chain that external traffic is routed to
    		// (which is always the service's "EXT" chain). hasExternalEndpoints is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/controlplane/manifests.go

    		{Name: "secure-port", Value: fmt.Sprintf("%d", localAPIEndpoint.BindPort)},
    		{Name: "allow-privileged", Value: "true"},
    		{Name: "kubelet-preferred-address-types", Value: "InternalIP,ExternalIP,Hostname"},
    		// add options to configure the front proxy.  Without the generated client cert, this will never be useable
    		// so add it unconditionally with recommended values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-kubeapiserver.sh

      fi
      if [[ -e "${KUBE_HOME}/bin/gke-internal-configure-helper.sh" ]]; then
        params+=" $(gke-kube-apiserver-internal-sni-param)"
      fi
      params+=" --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname"
      if [[ -s "${REQUESTHEADER_CA_CERT_PATH:-}" ]]; then
        params+=" --requestheader-client-ca-file=${REQUESTHEADER_CA_CERT_PATH}"
        params+=" --requestheader-allowed-names=aggregator"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    			proxier.logger.Error(err, "Failed to sync service", "servicePortName", svcPortName, "virtualServer", serv)
    		}
    
    		// Capture externalIPs.
    		for _, externalIP := range svcInfo.ExternalIPs() {
    			// ipset call
    			entry := &utilipset.Entry{
    				IP:       externalIP.String(),
    				Port:     svcInfo.Port(),
    				Protocol: protocol,
    				SetType:  utilipset.HashIPPort,
    			}
    
    			if svcInfo.ExternalPolicyLocal() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier_test.go

    			JumpChain: "DROP", MatchSet: "",
    		}},
    	}
    	checkIptables(t, ipt, epIpt)
    }
    
    func TestAcceptIPVSTraffic(t *testing.T) {
    	ipt, fp := buildFakeProxier(t)
    
    	ingressIP := "1.2.3.4"
    	externalIP := []string{"5.6.7.8"}
    	svcInfos := []struct {
    		svcType v1.ServiceType
    		svcIP   string
    		svcName string
    		epIP    string
    	}{
    		{v1.ServiceTypeClusterIP, "10.20.30.40", "svc1", "10.180.0.1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/helpers_test.go

    		add map ip kube-proxy service-ips { type ipv4_addr . inet_proto . inet_service : verdict ; comment "ClusterIP, ExternalIP and LoadBalancer IP traffic" ; }
    		add map ip kube-proxy service-nodeports { type inet_proto . inet_service : verdict ; comment "NodePort traffic" ; }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters_test.go

    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    			shouldError: false,
    		},
    		{
    			// Accommodating #45201 and #49202
    			name:   "InternalIP and ExternalIP are the same",
    			nodeIP: netutils.ParseIPSloppy("55.55.55.55"),
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "44.44.44.44"},
    				{Type: v1.NodeExternalIP, Address: "44.44.44.44"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/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: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller.go

    	// for vm to k8s or cross cluster. When node port services select specific nodes by labels,
    	// we run through the label selectors here to pick only ones that we need.
    	// Only nodes with ExternalIP addresses are included in this map !
    	nodeInfoMap map[string]kubernetesNode
    	// index over workload instances from workload entries
    	workloadInstancesIndex workloadinstances.Index
    
    	*networkManager
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top