Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DNSAutoAllocate (0.14 sec)

  1. pilot/pkg/networking/core/route/route_cache.go

    	// DNSCapture indicates whether the workload has enabled dns capture
    	DNSCapture bool
    	// DNSAutoAllocate indicates whether the workload should have auto allocated addresses for ServiceEntry
    	// This allows resolving ServiceEntries, which is especially useful for distinguishing TCP traffic
    	// This depends on DNSCapture.
    	DNSAutoAllocate bool
    	// AllowAny indicates if the proxy should allow all outbound traffic or only known registries
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/serviceentry_simulation_test.go

    				},
    			},
    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			proxy := &model.Proxy{
    				Metadata: &model.NodeMetadata{
    					DNSCapture:      true,
    					DNSAutoAllocate: true,
    				},
    			}
    			runSimulationTest(t, proxy, xds.FakeOptions{}, simulationTest{
    				name:   tt.name,
    				config: tt.config,
    				calls:  tt.calls,
    			})
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:06 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. pilot/pkg/xds/nds_test.go

    	cases := []struct {
    		name     string
    		meta     model.NodeMetadata
    		expected *dnsProto.NameTable
    	}{
    		{
    			name: "auto allocate",
    			meta: model.NodeMetadata{
    				DNSCapture:      true,
    				DNSAutoAllocate: true,
    			},
    			expected: &dnsProto.NameTable{
    				Table: map[string]*dnsProto.NameTable_NameInfo{
    					"random-1.host.example": {
    						Ips:      []string{"240.240.116.21"},
    						Registry: "External",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top