Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for unbound (0.18 sec)

  1. pilot/pkg/model/telemetry_logging_test.go

    			networking.ListenerClassGateway,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"client - outbound",
    			[]config.Config{newTelemetry("istio-system", client)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"client - inbound",
    			[]config.Config{newTelemetry("istio-system", client)},
    			networking.ListenerClassSidecarInbound,
    			sidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    			clusters: map[string][]string{
    				"inbound|8080||": nil,
    				"inbound|8081||": nil,
    				"inbound|8082||": nil,
    				"inbound|8083||": nil,
    			},
    			telemetry: map[string][]string{
    				"inbound|8080||": {string(service.Hostname)},
    				"inbound|8081||": {string(service.Hostname)},
    				"inbound|8082||": {string(serviceAlt.Hostname)},
    				"inbound|8083||": {string(serviceAlt.Hostname)},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/testdata/config_dump.json

                "name": "inbound-vip|8000|http|httpbin.default.svc.cluster.local",
                "type": "EDS",
                "eds_cluster_config": {
                  "eds_config": {
                    "ads": {},
                    "initial_fetch_timeout": "0s",
                    "resource_api_version": "V3"
                  },
                  "service_name": "inbound-vip|8000|http|httpbin.default.svc.cluster.local"
                },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

    }
    
    // OutboundTrafficPolicyConfig controls the default behavior of the sidecar for handling outbound traffic from the application.
    message OutboundTrafficPolicyConfig {
      // Specifies the sidecar's default behavior when handling outbound traffic from the application.
      enum Mode {
        // Outbound traffic to unknown destinations will be allowed, in case there are no services or ServiceEntries for the destination port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceregistry_test.go

    		makeIstioObject(t, s.Store(), workloadEntry)
    		expectEndpoints(t, s, "outbound|80||service.namespace.svc.cluster.local", []string{"2.3.4.5:80"}, nil)
    
    		newSvc := service.DeepCopy()
    		newSvc.Spec.Ports[0].Port = 8080
    		makeService(t, s.KubeClient().Kube(), newSvc)
    		expectEndpoints(t, s, "outbound|80||service.namespace.svc.cluster.local", nil, nil)
    		expectEndpoints(t, s, "outbound|8080||service.namespace.svc.cluster.local", []string{"2.3.4.5:8080"}, nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    	filter := istio_envoy_configdump.ClusterFilter{
    		FQDN: host.Name(svcHost),
    		Port: int(port),
    		// Although we want inbound traffic, ask for outbound traffic, as the DR is
    		// not associated with the inbound traffic.
    		Direction: model.TrafficDirectionOutbound,
    	}
    
    	dump, err := cd.GetClusterConfigDump()
    	if err != nil {
    		return "", err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    			want: gatewayPriorityOut,
    		},
    		{
    			name: "sidecar outbound lds",
    			args: args{
    				patchContext: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    				proxy:        sidecarProxy,
    				push:         push,
    				listeners:    sidecarOutboundIn,
    				skipAdds:     false,
    			},
    			want: sidecarOutboundOut,
    		},
    		{
    			name: "sidecar outbound lds - skip adds",
    			args: args{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route.go

    	}
    	return vsName + ":" + strconv.Itoa(port) + path
    }
    
    // BuildDefaultHTTPInboundRoute builds a default inbound route.
    func BuildDefaultHTTPInboundRoute(clusterName string, operation string) *route.Route {
    	out := buildDefaultHTTPRoute(clusterName, operation)
    	// For inbound, configure with notimeout.
    	out.GetRoute().Timeout = Notimeout
    	out.GetRoute().MaxStreamDuration = &route.RouteAction_MaxStreamDuration{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute_test.go

    				"test.local:80": {"test.local"},
    				"test:80":       {"test"},
    			},
    			map[string]string{
    				"allow_any":     "PassthroughCluster",
    				"test.local:80": "outbound|80||test.local",
    				"test:80":       "outbound|80||test",
    			},
    		},
    		{
    			"more exact first with full cluster domain",
    			[]*model.Service{
    				buildHTTPService("test.default.svc.cluster.local", visibility.Public, "", "default", 80),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    			if l := xdstest.ExtractListener(model.VirtualInboundListenerName, listeners); l == nil {
    				t.Fatalf("did not generate virtual inbound listener")
    			}
    
    			if l := xdstest.ExtractListener(model.VirtualOutboundListenerName, listeners); l == nil {
    				t.Fatalf("did not generate virtual outbound listener")
    			}
    		})
    	}
    }
    
    func TestVirtualListeners_TrafficRedirectionDisabled(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top