Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for PortNumber (0.32 sec)

  1. pilot/pkg/xds/endpoints/endpoint_builder.go

    func getOutlierDetectionAndLoadBalancerSettings(
    	destinationRule *v1alpha3.DestinationRule,
    	portNumber int,
    	subsetName string,
    ) (bool, *v1alpha3.LoadBalancerSettings) {
    	if destinationRule == nil {
    		return false, nil
    	}
    	outlierDetectionEnabled := false
    	var lbSettings *v1alpha3.LoadBalancerSettings
    
    	port := &model.Port{Port: portNumber}
    	policy := getSubsetTrafficPolicy(destinationRule, port, subsetName)
    	if policy != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    	if needMesh {
    		meshResult = convertRules(true)
    	}
    	if needGw {
    		gwResult = convertRules(false)
    	}
    	return meshResult, gwResult
    }
    
    func augmentPortMatch(routes []*istio.HTTPRoute, port k8s.PortNumber) []*istio.HTTPRoute {
    	res := make([]*istio.HTTPRoute, 0, len(routes))
    	for _, r := range routes {
    		r = r.DeepCopy()
    		for _, m := range r.Match {
    			m.Port = uint32(port)
    		}
    		if len(r.Match) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.gen.go

    func NewConflictingGateways(r *resource.Instance, gateway string, selector string, portnumber string, hosts string) diag.Message {
    	return diag.NewMessage(
    		ConflictingGateways,
    		r,
    		gateway,
    		selector,
    		portnumber,
    		hosts,
    	)
    }
    
    // NewImageAutoWithoutInjectionWarning returns a new diag.Message based on ImageAutoWithoutInjectionWarning.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. pkg/config/analysis/msg/messages.yaml

        template: "Conflict with gateways %s (workload selector %s, port %s, hosts %v)."
        args:
          - name: gateway
            type: string
          - name: selector
            type: string
          - name: portnumber
            type: string
          - name: hosts
            type: string
    
      - name: "ImageAutoWithoutInjectionWarning"
        code: IST0146
        level: Warning
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    	pls []*networking.TrafficPolicy_PortTrafficPolicy,
    ) *networking.LoadBalancerSettings_ConsistentHashLB {
    	if dst.Port != nil {
    		portNumber := dst.GetPort().GetNumber()
    		for _, setting := range pls {
    			number := setting.GetPort().GetNumber()
    			if number == portNumber {
    				return setting.GetLoadBalancer().GetConsistentHash()
    			}
    		}
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                name:
                                  description: The exact name of the cluster to match.
                                  type: string
                                portNumber:
                                  description: The service port for which this cluster
                                    was generated.
                                  type: integer
                                service:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                name:
                                  description: The exact name of the cluster to match.
                                  type: string
                                portNumber:
                                  description: The service port for which this cluster
                                    was generated.
                                  maximum: 4294967295
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                                name:
                                  description: The exact name of the cluster to match.
                                  type: string
                                portNumber:
                                  description: The service port for which this cluster
                                    was generated.
                                  maximum: 4294967295
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    required: - cluster - required: - listener - required: - routeConfiguration - required: - cluster properties: cluster: description: Match on envoy cluster attributes. properties: name: description: The exact name of the cluster to match. type: string portNumber: description: The service port for which this cluster was generated. type: integer service: description: The fully qualified service name for this cluster. type: string subset: description: The subset associated with the service. type: string type:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.19.md

    - Fix bug in the port allocation logic that caused that the NodePort creation with statically assigned portNumber collide in multi-master HA cluster ([#89937](https://github.com/kubernetes/kubernetes/pull/89937), [@aojea](https://github.com/aojea)) [SIG Network and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top