Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for addUses (0.18 sec)

  1. pilot/pkg/bootstrap/options.go

    type DiscoveryServerOptions struct {
    	// The listening address for HTTP (debug). If the port in the address is empty or "0" (as in "127.0.0.1:" or "[::1]:0")
    	// a port number is automatically chosen.
    	HTTPAddr string
    
    	// The listening address for HTTPS (webhooks). If the port in the address is empty or "0" (as in "127.0.0.1:" or "[::1]:0")
    	// a port number is automatically chosen.
    	// If the address is empty, the secure port is disabled, and the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    }
    
    // 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{
    		Address: &core.Address_Pipe{
    			Pipe: &core.Pipe{
    				Path: strings.TrimPrefix(bind, model.UnixAddressPrefix),
    			},
    		},
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/sidecar_simulation_test.go

    		{Address: "1.2.3.4", Port: 81, Protocol: simulation.TCP, HostHeader: "headless.default.svc.cluster.local"},
    
    		{Address: "1.2.3.4", Port: 82, Protocol: simulation.TCP, HostHeader: "headless.default.svc.cluster.local"},
    
    		// Use short host name
    		{Address: "1.2.3.4", Port: 83, Protocol: simulation.TCP, TLS: simulation.TLS, HostHeader: "headless.default"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_builder_test.go

    			proxy: sidecarProxy,
    			fields: fields{
    				OutboundListeners: []*listener.Listener{
    					{
    						Name: "outbound-listener",
    					},
    					{
    						Name: "remove-outbound",
    						Address: &core.Address{
    							Address: &core.Address_SocketAddress{
    								SocketAddress: &core.SocketAddress{
    									PortSpecifier: &core.SocketAddress_PortValue{
    										PortValue: 81,
    									},
    								},
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    func (cb *ClusterBuilder) buildExternalSDSCluster(addr string) *cluster.Cluster {
    	ep := &endpoint.LbEndpoint{
    		HostIdentifier: &endpoint.LbEndpoint_Endpoint{
    			Endpoint: &endpoint.Endpoint{
    				Address: &core.Address{
    					Address: &core.Address_Pipe{
    						Pipe: &core.Pipe{
    							Path: addr,
    						},
    					},
    				},
    			},
    		},
    	}
    	options := &http.HttpProtocolOptions{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. pilot/pkg/simulation/traffic.go

    	if c.Sni == "" && (c.TLS == TLS) {
    		c.Sni = c.HostHeader
    	}
    	if c.Path == "" {
    		c.Path = "/"
    	}
    	if c.TLS == "" {
    		c.TLS = Plaintext
    	}
    	if c.Address == "" {
    		// pick a random address, assumption is the test does not care
    		c.Address = "1.3.3.7"
    	}
    	if c.TLS == MTLS && c.Alpn == "" {
    		c.Alpn = protocolToMTLSAlpn(c.Protocol)
    	}
    	if c.TLS == TLS && c.Alpn == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder_test.go

    						{
    							HostIdentifier: &endpoint.LbEndpoint_Endpoint{
    								Endpoint: &endpoint.Endpoint{
    									Address: &core.Address{
    										Address: &core.Address_SocketAddress{
    											SocketAddress: &core.SocketAddress{
    												Address: "192.168.1.1",
    												PortSpecifier: &core.SocketAddress_PortValue{
    													PortValue: 10001,
    												},
    											},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			Locality:              getWorkloadEntryLocality(&wle.Spec),
    		}
    
    		if addr, err := netip.ParseAddr(wle.Spec.Address); err == nil {
    			w.Addresses = [][]byte{addr.AsSlice()}
    		} else {
    			log.Warnf("skipping workload entry %s/%s; DNS Address resolution is not yet implemented", wle.Namespace, wle.Name)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. docs/orchestration/docker-compose/docker-compose.yaml

    version: '3.7'
    
    # Settings and configurations that are common for all containers
    x-minio-common: &minio-common
      image: quay.io/minio/minio:RELEASE.2024-06-13T22-53-53Z
      command: server --console-address ":9001" http://minio{1...4}/data{1...2}
      expose:
        - "9000"
        - "9001"
      # environment:
        # MINIO_ROOT_USER: minioadmin
        # MINIO_ROOT_PASSWORD: minioadmin
      healthcheck:
        test: ["CMD", "mc", "ready", "local"]
        interval: 5s
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 05:40:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. pilot/pkg/model/endpointshards.go

    		// so that full push does not send them from shards.
    		for _, oie := range oldIstioEndpoints {
    			omap[oie.Address] = oie
    		}
    		for _, nie := range istioEndpoints {
    			nmap[nie.Address] = nie
    		}
    		for _, nie := range istioEndpoints {
    			if oie, exists := omap[nie.Address]; exists {
    				// If endpoint exists already, we should push if it's changed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top