Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for localisty (0.15 sec)

  1. pilot/pkg/networking/grpcgen/testdata/xds_bootstrap.json

        "metadata": {
          "INSTANCE_IPS": "127.0.1.1",
          "PILOT_SAN": [
            "istiod.istio-system.svc"
          ],
          "GENERATOR": "grpc",
          "NAMESPACE": "test"
        },
        "localisty": {},
        "UserAgentVersionType": "istiov1"
      },
      "certificate_providers": {
        "default": {
          "plugin_name": "file_watcher",
          "config": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 08 18:48:42 UTC 2022
    - 961 bytes
    - Viewed (0)
  2. pkg/test/loadbalancersim/locality/locality.go

    //  limitations under the License.
    
    package locality
    
    import (
    	"fmt"
    	"strings"
    )
    
    type Instance struct {
    	Zone   string
    	Region string
    }
    
    func (l Instance) String() string {
    	return fmt.Sprintf("%s/%s", l.Region, l.Zone)
    }
    
    func Parse(s string) Instance {
    	parts := strings.Split(s, "/")
    	if len(parts) != 2 {
    		panic("invalid locality string: " + s)
    	}
    	return Instance{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 27 20:55:37 UTC 2022
    - 979 bytes
    - Viewed (0)
  3. releasenotes/notes/locality-service.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 21:53:05 UTC 2023
    - 218 bytes
    - Viewed (0)
  4. tests/testdata/config/destination-rule-locality.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: locality
      namespace: default
    spec:
      host: locality.cluster.local
      trafficPolicy:
        outlierDetection:
          interval: 1s
          baseEjectionTime: 3m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 26 15:06:45 UTC 2020
    - 263 bytes
    - Viewed (0)
  5. releasenotes/notes/locality-lb-docs.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: documentation
    releaseNotes:
      - |
        **Added** The locality load balancing docs have been re-written into a
        formal traffic management task. The new docs describe in more detail
        how locality load balancing works as well as how to configure both
        failover and weighted distribution. In addition, the new docs are now
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 15 22:52:39 UTC 2020
    - 420 bytes
    - Viewed (0)
  6. releasenotes/notes/autoregistered-workload-entry-locality.yaml

    kind: feature
    
    area: traffic-management
    
    issue:
    - https://github.com/istio/istio/pull/33426
    - 33426
    
    releaseNotes:
    - |
      **Added** support for overriding the locality of the WorkloadGroup template in
      auto registered WorkloadEntries. Locality overrides can be passed in through
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 22 18:59:18 UTC 2021
    - 342 bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.json

    [
        {
            "clusterName": "agent",
            "endpoints": [
                {
                    "locality": {},
                    "lbEndpoints": [
                        {
                            "endpoint": {
                                "address": {
                                    "socketAddress": {
                                        "address": "127.0.0.1",
                                        "portValue": 15020
                                    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 40.4K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml

        loadBalancingWeight: 3
        locality: {}
      policy:
        overprovisioningFactor: 140
    - clusterName: sds-grpc
      endpoints:
      - lbEndpoints:
        - endpoint:
            address:
              pipe:
                path: ./var/run/secrets/workload-spiffe-uds/socket
            healthCheckConfig: {}
          healthStatus: HEALTHY
          loadBalancingWeight: 1
        locality: {}
      policy:
        overprovisioningFactor: 140
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    		cluster := buildFakeCluster()
    		ApplyLocalityLoadBalancer(cluster.LoadAssignment, nil, locality, nil, env.Mesh().LocalityLbSetting, true)
    		for _, localityEndpoint := range cluster.LoadAssignment.Endpoints {
    			if localityEndpoint.Locality.Region == locality.Region {
    				if localityEndpoint.Locality.Zone == locality.Zone {
    					if localityEndpoint.Locality.SubZone == locality.SubZone {
    						g.Expect(localityEndpoint.Priority).To(Equal(uint32(0)))
    						continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    				applyLocalityFailover(locality, loadAssignment, localityLB.Failover)
    			}
    		} else {
    			// Apply default failover settings or user defined region failover settings.
    			applyLocalityFailover(locality, loadAssignment, localityLB.Failover)
    		}
    	}
    }
    
    // set locality loadbalancing weight based on user defined weights.
    func applyLocalityWeights(
    	locality *core.Locality,
    	loadAssignment *endpoint.ClusterLoadAssignment,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top