Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for uds (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. cluster/gce/gci/configure-helper.sh

      if [[ "${KONNECTIVITY_SERVICE_PROXY_PROTOCOL_MODE:-grpc}" == 'grpc' ]]; then
        params+=("--uds-name=/etc/srv/kubernetes/konnectivity-server/konnectivity-server.socket")
      elif [[ "${KONNECTIVITY_SERVICE_PROXY_PROTOCOL_MODE:-grpc}" == 'http-connect' ]]; then
        # HTTP-CONNECT can work with either UDS or mTLS.
        # Linking them here to make sure we get good coverage with two test configurations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_builder_test.go

    				security.CredentialMetaDataName: "true",
    			},
    		},
    	}
    
    	cases := []struct {
    		name         string
    		expectedName string
    		expectedPath string
    	}{
    		{
    			name:         "uds",
    			expectedName: security.SDSExternalClusterName,
    			expectedPath: security.CredentialNameSocketPath,
    		},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
Back to top