Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for xds_v3 (0.1 sec)

  1. pkg/istio-agent/testdata/grpc-bootstrap.json

    {
      "xds_servers": [
        {
          "server_uri": "unix:///etc/istio/XDS",
          "channel_creds": [
            {
              "type": "insecure"
            }
          ],
          "server_features": [
            "xds_v3"
          ]
        }
      ],
      "node": {
        "id": "sidecar~127.0.0.1~pod1.fake-namespace~fake-namespace.svc.cluster.local",
        "metadata": {
          "GENERATOR": "grpc",
          "INSTANCE_IPS": "127.0.0.1",
          "ISTIO_VERSION": "version",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 957 bytes
    - Viewed (0)
  2. pkg/istio-agent/grpcxds/grpc_bootstrap.go

    	}
    
    	bootstrap := Bootstrap{
    		XDSServers: []XdsServer{{
    			ServerURI: serverURI,
    			// connect locally via agent
    			ChannelCreds:   []ChannelCreds{{Type: "insecure"}},
    			ServerFeatures: []string{"xds_v3"},
    		}},
    		Node: &core.Node{
    			Id:       opts.Node.ID,
    			Locality: opts.Node.Locality,
    			Metadata: xdsMeta,
    		},
    		ServerListenerNameTemplate: ServerListenerNameTemplate,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top