Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for uds (0.28 sec)

  1. pkg/istio-agent/xds_proxy.go

    	"istio.io/istio/pkg/istio-agent/metrics"
    	istiokeepalive "istio.io/istio/pkg/keepalive"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/network"
    	"istio.io/istio/pkg/uds"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/wasm"
    	"istio.io/istio/security/pkg/nodeagent/caclient"
    	"istio.io/istio/security/pkg/pki/util"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/httproute.go

    		if resource != nil {
    			return resource, true
    		}
    		if listenerPort > 0 {
    			// only cache for tcp ports and not for uds
    			vHostCache[listenerPort] = virtualHosts
    		}
    
    		// FIXME: This will ignore virtual services with hostnames that do not match any service in the registry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  3. pkg/test/echo/server/endpoint/http.go

    	if h.Port == nil {
    		defer common.Metrics.HTTPRequests.With(common.PortLabel.Value("uds")).Increment()
    	} else {
    		defer common.Metrics.HTTPRequests.With(common.PortLabel.Value(strconv.Itoa(h.Port.Port))).Increment()
    	}
    	if !h.IsServerReady() {
    		// Handle readiness probe failure.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/conversion.go

    	we := ConvertWorkloadEntry(cfg)
    	addr := we.GetAddress()
    	dnsServiceEntryOnly := false
    	if strings.HasPrefix(addr, model.UnixAddressPrefix) {
    		// k8s can't use uds for service objects
    		dnsServiceEntryOnly = true
    	}
    	if addr != "" && !netutil.IsValidIPAddress(addr) {
    		// k8s can't use workloads with hostnames in the address field.
    		dnsServiceEntryOnly = true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-kubeapiserver.sh

        csc_config_volume="{\"name\": \"cscconfigmount\",\"hostPath\": {\"path\": \"/etc/srv/kubernetes/egress_selector_configuration.yaml\", \"type\": \"FileOrCreate\"}},"
    
        # UDS socket for communication between apiserver and konnectivity-server
        local default_konnectivity_socket_path="/etc/srv/kubernetes/konnectivity-server"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. pilot/pkg/xds/endpoints/endpoint_builder.go

    		// There are other two cases that should not be filtered out:
    		// 1. ep.Address can be empty since https://github.com/istio/istio/pull/45150, in this case we will replace it with gateway ip.
    		// 2. ep.Address can be uds when EndpointPort = 0
    		if ep.Address != "" && ep.EndpointPort != 0 && !netutil.IsValidIPAddress(ep.Address) {
    			return false
    		}
    		// filter out endpoints that don't match the subset
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. pkg/istio-agent/agent.go

    	// using custom roots.
    	CARootCerts string
    
    	// Extra headers to add to the XDS connection.
    	XDSHeaders map[string]string
    
    	// Is the proxy an IPv6 proxy
    	IsIPv6 bool
    
    	// Path to local UDS to communicate with Envoy
    	XdsUdsPath string
    
    	// Ability to retrieve ProxyConfig dynamically through XDS
    	EnableDynamicProxyConfig bool
    
    	// All of the proxy's IP Addresses
    	ProxyIPAddresses []string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/util/util.go

    		AddressPrefix: prefix.Addr().String(),
    		PrefixLen: &wrapperspb.UInt32Value{
    			Value: uint32(prefix.Bits()),
    		},
    	}, nil
    }
    
    // BuildAddress returns a SocketAddress with the given ip and port or uds.
    func BuildAddress(bind string, port uint32) *core.Address {
    	address := BuildNetworkAddress(bind, port, istionetworking.TransportProtocolTCP)
    	if address != nil {
    		return address
    	}
    
    	return &core.Address{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    		Namespace:         "udsLocal",
    		CreationTimestamp: GlobalTime,
    		Labels:            map[string]string{label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    	},
    	Spec: &networking.ServiceEntry{
    		Hosts: []string{"uds.cluster.local"},
    		Ports: []*networking.ServicePort{
    			{Number: 6553, Name: "grpc-1", Protocol: "grpc"},
    		},
    		Endpoints: []*networking.WorkloadEntry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster.go

    		// * unix:///...: send to configured unix domain socket
    		endpointAddress := ""
    		port := 0
    		if strings.HasPrefix(ingressListener.DefaultEndpoint, model.UnixAddressPrefix) {
    			// this is a UDS endpoint. assign it as is
    			endpointAddress = ingressListener.DefaultEndpoint
    		} else if len(ingressListener.DefaultEndpoint) > 0 {
    			// parse the ip, port. Validation guarantees presence of :
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top