Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TunnelProtocol (0.15 sec)

  1. pkg/workloadapi/workload.pb.go

    	TunnelProtocol_HBONE TunnelProtocol = 1 // Future options may include things like QUIC/HTTP3, etc.
    )
    
    // Enum value maps for TunnelProtocol.
    var (
    	TunnelProtocol_name = map[int32]string{
    		0: "NONE",
    		1: "HBONE",
    	}
    	TunnelProtocol_value = map[string]int32{
    		"NONE":  0,
    		"HBONE": 1,
    	}
    )
    
    func (x TunnelProtocol) Enum() *TunnelProtocol {
    	p := new(TunnelProtocol)
    	*p = x
    	return p
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.proto

    message Port {
      // Port the service is reached at (frontend).
      uint32 service_port = 1;
      // Port the service forwards to (backend).
      uint32 target_port = 2;
    }
    
    // TunnelProtocol indicates the tunneling protocol for requests.
    enum TunnelProtocol {
      // NONE means requests should be forwarded as-is, without tunneling.
      NONE = 0;
      // HBONE means requests should be tunneled over HTTP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    	if annotations[constants.AmbientRedirection] == constants.AmbientRedirectionEnabled {
    		// Configured for override
    		w.TunnelProtocol = workloadapi.TunnelProtocol_HBONE
    	}
    	// Otherwise supports tunnel directly
    	if model.SupportsTunnel(labels, model.TunnelHTTP) {
    		w.TunnelProtocol = workloadapi.TunnelProtocol_HBONE
    		w.NativeTunnel = true
    	}
    }
    
    func pickTrustDomain(mesh *MeshConfig) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    	// We should get 0 or 1 workloads, so just return the first.
    	infos, _ := ps.ambientIndex.AddressInformation(sets.New(n.String() + "/" + ip))
    	for _, wl := range ExtractWorkloadsFromAddresses(infos) {
    		if wl.TunnelProtocol == workloadapi.TunnelProtocol_HBONE {
    			return true
    		}
    	}
    	return false
    }
    
    // WorkloadsForWaypoint returns all workloads associated with a given waypoint identified by it's WaypointKey
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top