Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for portNames (0.24 sec)

  1. pkg/config/analysis/msg/messages.gen.go

    func NewPortNameIsNotUnderNamingConvention(r *resource.Instance, portName string, port int, targetPort string) diag.Message {
    	return diag.NewMessage(
    		PortNameIsNotUnderNamingConvention,
    		r,
    		portName,
    		port,
    		targetPort,
    	)
    }
    
    // NewNamespaceMultipleInjectionLabels returns a new diag.Message based on NamespaceMultipleInjectionLabels.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.yaml

        template: "Port name %s (port: %d, targetPort: %s) doesn't follow the naming convention of Istio port."
        args:
          - name: portName
            type: string
          - name: port
            type: int
          - name: targetPort
            type: string
    
      # IST0119 RETIRED
      # IST0120 RETIRED
      # IST0121 RETIRED
      # IST0122 RETIRED
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    	}
    	return name
    }
    
    // servicePortChainNameBase returns the base name for a chain for the given ServicePort.
    // This is something like "HASH-namespace/serviceName/protocol/portName", e.g,
    // "ULMVA6XW-ns1/svc1/tcp/p80".
    func servicePortChainNameBase(servicePortName *proxy.ServicePortName, protocol string) string {
    	// nftables chains can contain the characters [A-Za-z0-9_./-] (but must start with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. 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)
  5. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                name:
                                  description: Match a specific listener by its name.
                                  type: string
                                portName:
                                  type: string
                                portNumber:
                                  description: The service port/gateway port to which
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                                name:
                                  description: Match a specific listener by its name.
                                  type: string
                                portName:
                                  type: string
                                portNumber:
                                  description: The service port/gateway port to which
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
Back to top