Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for nds (0.05 sec)

  1. pkg/dns/proto/nds.proto

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    syntax = "proto3";
    
    package istio.networking.nds.v1;
    
    option go_package = "istio.io/istio/pkg/dns/proto/istio_networking_nds_v1";
    
    // Table of hostnames and their IPs to br used for DNS resolution at the agent
    // Sent by istiod to istio agents via xds
    message NameTable {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 01 20:40:32 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. pilot/pkg/xds/nds.go

    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // NdsGenerator generates config for Nds i.e. Name Discovery Service. Istio agents
    // send NDS requests to istiod and istiod responds with a list of services and their
    // associated IPs (including service entries).
    // The agent then updates its internal DNS based on this data. If DNS capture is enabled
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. releasenotes/notes/nds-merging.yaml

    dwq <******@****.***> 1676385642 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 14 14:40:42 UTC 2023
    - 247 bytes
    - Viewed (0)
  4. pilot/pkg/xds/testdata/nds-se.yaml

    John Howard <******@****.***> 1610097475 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 08 09:17:55 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. pkg/model/xds.go

    	ExtensionConfigurationType = APITypePrefix + "envoy.config.core.v3.TypedExtensionConfig"
    
    	NameTableType   = APITypePrefix + "istio.networking.nds.v1.NameTable"
    	HealthInfoType  = APITypePrefix + "istio.v1.HealthInformation"
    	ProxyConfigType = APITypePrefix + "istio.mesh.v1alpha1.ProxyConfig"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/nds_test.go

    					},
    				},
    			},
    		},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    				ConfigString: mustReadFile(t, "./testdata/nds-se.yaml"),
    			})
    
    			ads := s.ConnectADS().WithType(v3.NameTableType)
    			res := ads.RequestResponseAck(t, &discovery.DiscoveryRequest{
    				Node: &core.Node{
    					Id:       ads.ID,
    					Metadata: tt.meta.ToStruct(),
    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