Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for portNames (0.34 sec)

  1. pkg/config/validation/validation.go

    			}
    		}
    
    		// Ensure unique port names
    		portNames := make(map[string]bool)
    
    		for _, s := range value.Servers {
    			if s == nil {
    				v = AppendValidation(v, fmt.Errorf("server may not be nil"))
    				continue
    			}
    			if s.Port != nil {
    				if portNames[s.Port.Name] {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    `
    
    func httpGateway(host string, port int, portName, protocol string, gatewayIstioLabel string) string { //nolint: unparam
    	return tmpl.MustEvaluate(gatewayTmpl, struct {
    		GatewayHost       string
    		GatewayPort       int
    		GatewayPortName   string
    		GatewayProtocol   string
    		Credential        string
    		GatewayIstioLabel string
    		TLSMode           string
    	}{
    		host, port, portName, protocol, "", gatewayIstioLabel, "SIMPLE",
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    transportProtocol: description: Applies only to `SIDECAR_INBOUND` context. type: string type: object listenerFilter: description: Match a specific listener filter. type: string name: description: Match a specific listener by its name. type: string portName: type: string portNumber: description: The service port/gateway port to which traffic is being sent/received. type: integer type: object proxy: description: Match on properties associated with a proxy. properties: metadata: additionalProperties:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top