Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SetupProxy (0.19 sec)

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

    			},
    		},
    	}
    	cg := NewConfigGenTest(t, TestOptions{Configs: getEnvoyFilterConfigs(configPatches)})
    
    	gatewayProxy := cg.SetupProxy(&model.Proxy{Type: model.Router, ConfigNamespace: "not-default"})
    	sidecarProxy := cg.SetupProxy(&model.Proxy{ConfigNamespace: "not-default"})
    	type fields struct {
    		GatewayListeners        []*listener.Listener
    		InboundListeners        []*listener.Listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/accesslog_test.go

                  log_format:
                    json_format:
                      envoyproxy_authority: '%REQ(:AUTHORITY)%'
    `,
    	})
    
    	proxy := cg.SetupProxy(nil)
    	l1 := cg.Listeners(proxy)
    	l2 := cg.Listeners(proxy)
    	// Make sure it doesn't change between patches
    	if d := cmp.Diff(l1, l2, protocmp.Transform()); d != "" {
    		t.Fatal(d)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. pilot/test/xds/fake.go

    		watches = append(watches, sch.GroupVersionKind().String())
    	}
    	return watches
    }
    
    func (f *FakeDiscoveryServer) ConnectUnstarted(p *model.Proxy, watch []string) *adsc.ADSC {
    	f.t.Helper()
    	p = f.SetupProxy(p)
    	initialWatch := []*discovery.DiscoveryRequest{}
    	for _, typeURL := range watch {
    		initialWatch = append(initialWatch, &discovery.DiscoveryRequest{TypeUrl: typeURL})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top