Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for blackholed (0.15 sec)

  1. pilot/pkg/networking/core/accesslog_test.go

    	// Make sure it doesn't change between patches
    	if d := cmp.Diff(l1, l2, protocmp.Transform()); d != "" {
    		t.Fatal(d)
    	}
    	// Make sure we have exactly 1 access log
    	fc := xdstest.ExtractFilterChain("virtualOutbound-blackhole", xdstest.ExtractListener("virtualOutbound", l1))
    	if len(xdstest.ExtractTCPProxy(t, fc).GetAccessLog()) != 1 {
    		t.Fatalf("unexpected access log: %v", xdstest.ExtractTCPProxy(t, fc).GetAccessLog())
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    						PortSpecifier: &core.SocketAddress_PortValue{
    							PortValue: 15006,
    						},
    					},
    				},
    			},
    			FilterChains: []*listener.FilterChain{
    				{
    					Name: "virtualInbound-blackhole",
    					FilterChainMatch: &listener.FilterChainMatch{
    						DestinationPort: &wrapperspb.UInt32Value{
    							Value: 15006,
    						},
    					},
    					Filters: []*listener.Filter{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    			routeName:       "http.80",
    			expectedVirtualHosts: map[string][]string{
    				"blackhole:80": {
    					"*",
    				},
    			},
    			expectedVirtualHostsHostPortStrip: map[string][]string{
    				"blackhole:80": {
    					"*",
    				},
    			},
    			expectedHTTPRoutes:    map[string]int{"blackhole:80": 0},
    			expectStatefulSession: false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_builder_test.go

    	if l == nil {
    		t.Fatalf("failed to find virtual inbound listener")
    	}
    	listenertest.VerifyListener(t, l, listenertest.ListenerTest{
    		FilterChains: []listenertest.FilterChainTest{
    			{Name: "virtualInbound-blackhole"},
    			{Name: "virtualInbound-catchall-http", Type: listenertest.MTLSHTTP},
    			{Name: "virtualInbound-catchall-http", Type: listenertest.PlainHTTP},
    			{Name: "virtualInbound", Type: listenertest.MTLSTCP},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    		ob, cs := configgen.buildOutboundClusters(cb, proxy, outboundPatcher, services)
    		cacheStats = cacheStats.merge(cs)
    		resources = append(resources, ob...)
    		// Add a blackhole and passthrough cluster for catching traffic to unresolved routes
    		clusters = outboundPatcher.conditionallyAppend(clusters, nil, cb.buildBlackHoleCluster(), cb.buildDefaultPassthroughCluster())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. istioctl/pkg/authz/testdata/configdump.yaml

                "stat_prefix": "BlackHoleCluster",
                "cluster": "BlackHoleCluster"
               }
              }
             ],
             "name": "virtualOutbound-blackhole"
            },
            {
             "filters": [
              {
               "name": "istio.stats",
               "typed_config": {
                "@type": "type.googleapis.com/stats.PluginConfig"
               }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  7. pkg/kube/inject/webhook.go

    		pod.Spec.InitContainers = modifyContainers(pod.Spec.InitContainers, InitContainerName, MoveFirst)
    	} else {
    		// Else, we want iptables setup last so we do not blackhole init containers
    		// This is istio-validation => rest => istio-init (note: only one of istio-init or istio-validation should be present)
    		// Validation container must be first to block any user containers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/gateway.go

    		log.Warnf("constructed http route config for route %s on port %d with no vhosts; Setting up a default 404 vhost", routeName, port)
    		virtualHosts = []*route.VirtualHost{{
    			Name:    util.DomainName("blackhole", port),
    			Domains: []string{"*"},
    			// Empty route list will cause Envoy to 404 NR any requests
    			Routes: []*route.Route{},
    		}}
    	} else {
    		virtualHosts = make([]*route.VirtualHost, 0, len(vHostDedupMap))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.7.md

    * Local storage teardown fix ([#48402](https://github.com/kubernetes/kubernetes/pull/48402), [@ianchakeres](https://github.com/ianchakeres))
    * Fix udp service blackhole problem when number of backends changes from 0 to non-0 ([#48524](https://github.com/kubernetes/kubernetes/pull/48524), [@freehan](https://github.com/freehan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.21.md

    - Kube-proxy: fix a bug on UDP `NodePort` Services where stale connection tracking entries may blackhole the traffic directed to the `NodePort` ([#98305](https://github.com/kubernetes/kubernetes/pull/98305), [@aojea](https://github.com/aojea))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top