Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for Destinations (0.38 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    			destinations, _ := fp.ipvs.GetRealServers(svc)
    			if len(destinations) != len(vs.RS) {
    				t.Errorf("Expected %d destinations, got %d destinations", len(vs.RS), len(destinations))
    			}
    			if len(vs.RS) == 1 {
    				if destinations[0].Address.String() != vs.RS[0].IP || destinations[0].Port != vs.RS[0].Port {
    					t.Errorf("Unexpected mismatch destinations")
    				}
    			}
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    		},
    		workloadAgnostic: true,
    	})
    	t.RunTraffic(TrafficTestCase{
    		name: "set host header in destination",
    		config: `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: default
    spec:
      hosts:
      - {{ (index .dst 0).Config.Service }}
      http:
      - route:
        - destination:
            host: {{ (index .dst 0).Config.Service }}
          headers:
            request:
              set:
    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. pkg/proxy/nftables/proxier_test.go

    		add set ip kube-proxy nodeport-ips { type ipv4_addr ; comment "IPs that accept NodePort traffic" ; }
    		add map ip kube-proxy firewall-ips { type ipv4_addr . inet_proto . inet_service : verdict ; comment "destinations that are subject to LoadBalancerSourceRanges" ; }
    		add chain ip kube-proxy firewall-check
    		add rule ip kube-proxy firewall-check ip daddr . meta l4proto . th dport vmap @firewall-ips
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    mirrorPercentage: description: Percentage of the traffic to be mirrored by the `mirror` field. properties: value: format: double type: number type: object mirrors: description: Specifies the destinations to mirror HTTP traffic in addition to the original destination. items: properties: destination: description: Destination specifies the target of the mirror operation. properties: host: description: The name of a service from the service registry. type: string port: description: Specifies the port on the...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    			Destination: &networking.Destination{Host: "*"},
    		}}, valid: false},
    		{name: "bad wildcard", routes: []*networking.RouteDestination{{
    			Destination: &networking.Destination{Host: "foo.*"},
    		}}, valid: false},
    		{name: "bad fqdn", routes: []*networking.RouteDestination{{
    			Destination: &networking.Destination{Host: "default/baz"},
    		}}, valid: false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/istio-service-dashboard.json

                "text": "source",
                "value": "source"
              },
              {
                "selected": true,
                "text": "destination",
                "value": "destination"
              }
            ],
            "query": "source,destination",
            "refresh": 1,
            "regex": "",
            "skipUrlSync": false,
            "sort": 1,
            "tagValuesQuery": "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/gateway_test.go

    			{
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "foo.example.org",
    						},
    					},
    					{
    						Destination: &networking.Destination{
    							Host: "bar.example.org",
    						},
    					},
    				},
    				Mirror: &networking.Destination{
    					Host: "baz.example.org",
    				},
    				Mirrors: []*networking.HTTPMirrorPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  8. samples/addons/grafana.yaml

    "query\",\"useTags\":false},{\"current\":{\"selected\":false,\"text\":\"destination\",\"value\":\"destination\"},\"datasource\":\"Prometheus\",\"definition\":\"\",\"hide\":0,\"includeAll\":false,\"label\":\"Reporter\",\"multi\":true,\"name\":\"qrep\",\"options\":[{\"selected\":false,\"text\":\"source\",\"value\":\"source\"},{\"selected\":true,\"text\":\"destination\",\"value\":\"destination\"}],\"query\":\"source,destination\",\"refresh\":1,\"regex\":\"\",\"skipUrlSync\":false,\"sort\":1,\"tagVa...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder_test.go

    			byteArray, err := config.ToJSON(destRule.GetRule().Spec)
    			if err != nil {
    				t.Errorf("Could not parse destination rule: %v", err)
    			}
    			dr := &networking.DestinationRule{}
    			err = json.Unmarshal(byteArray, dr)
    			if err != nil {
    				t.Errorf("Could not unmarshal destination rule: %v", err)
    			}
    			ca := dr.TrafficPolicy.Tls.CaCertificates
    			if ca != tt.expectedCaCertificateName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_test.go

    		},
    		{
    			// Set DestinationRule override for tcp_keepalive.
    			"destination rule",
    			DestinationRule,
    			&core.TcpKeepalive{KeepaliveTime: &wrappers.UInt32Value{Value: uint32(DestinationRuleTCPKeepaliveSeconds)}},
    		},
    		{
    			// Set DestinationRule override for tcp_keepalive with empty value.
    			"destination rule default",
    			DestinationRuleForOsDefault,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top