Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 186 for xds (0.03 sec)

  1. istioctl/pkg/config/config.go

    	"istioNamespace":      env.Register("ISTIOCTL_ISTIONAMESPACE", constants.IstioSystemNamespace, "The istioctl --istioNamespace override"),
    	"xds-address":         env.Register("ISTIOCTL_XDS_ADDRESS", "", "The istioctl --xds-address override"),
    	"xds-port":            env.Register("ISTIOCTL_XDS_PORT", 15012, "The istioctl --xds-port override"),
    	"authority":           env.Register("ISTIOCTL_AUTHORITY", "", "The istioctl --authority override"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jul 30 12:16:07 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/cds_test.go

    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/ptr"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func TestCDS(t *testing.T) {
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. 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)
  4. tests/testdata/mcp_bootstrap_tmpl.json

          "socket_address": {
            "address": "0.0.0.0",
            "port_value": {{.Ports.AdminPort}}
          }
        }
      },
      "static_resources": {
        "listeners": [],
        "clusters": [
          {
            "name": "xds-grpc",
            "type": "STRICT_DNS",
            "connect_timeout": {
              "seconds": 5,
              "nanos": 0
            },
            "lb_policy": "ROUND_ROBIN",
            "hosts": [
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 08 21:09:56 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. pkg/test/echo/server/endpoint/grpc.go

    func (s *grpcInstance) newServer(opts ...grpc.ServerOption) grpcServer {
    	if s.Port.XDSServer {
    		if len(s.Port.XDSTestBootstrap) > 0 {
    			opts = append(opts, xds.BootstrapContentsForTesting(s.Port.XDSTestBootstrap))
    		}
    		epLog.Infof("Using xDS for serverside gRPC on %d", s.Port.Port)
    		grpcServer, err := xds.NewGRPCServer(opts...)
    		if err != nil {
    			return nil
    		}
    		return grpcServer
    	}
    	return grpc.NewServer(opts...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 17:30:37 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. releasenotes/notes/47740.yaml

      This promotion should not result in any loss of functionality. However, the request is now sent based on xDS instead of HTTP, and we have introduced a 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 08 08:38:19 UTC 2024
    - 443 bytes
    - Viewed (0)
  7. pkg/istio-agent/grpcxds/grpc_bootstrap.go

    	// "0.0.0.0:8080", "[::]:8080").
    	ServerListenerNameTemplate = ServerListenerNamePrefix + "%s"
    )
    
    // Bootstrap contains the general structure of what's expected by GRPC's XDS implementation.
    // See https://github.com/grpc/grpc-go/blob/master/xds/internal/xdsclient/bootstrap/bootstrap.go
    // TODO use structs from gRPC lib if created/exported
    type Bootstrap struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-agent/status/ready/probe.go

    	}
    
    	if !CDSUpdated && !LDSUpdated {
    		return fmt.Errorf("config not received from XDS server (is Istiod running?): %s", s.String())
    	} else if s.LDSUpdatesRejection > 0 || s.CDSUpdatesRejection > 0 {
    		return fmt.Errorf("config received from XDS server, but was rejected: %s", s.String())
    	}
    	return fmt.Errorf("config not fully received from XDS server: %s", s.String())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. pilot/pkg/model/network_test.go

    		xdsUpdater.WaitOrFail(t, "xds full")
    	})
    
    	workingDNSServer.setHosts(make(sets.String))
    	t.Run("no answer", func(t *testing.T) {
    		assert.EventuallyEqual(t, func() int {
    			return len(env.NetworkManager.AllGateways())
    		}, 0, retry.Timeout(10*model.MinGatewayTTL))
    		xdsUpdater.WaitOrFail(t, "xds full")
    		if env.NetworkManager.IsMultiNetworkEnabled() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. tests/testdata/bootstrap_tmpl.json

              }
            ]
          }
        ],
        "clusters": [
          {
            "name": "xds-grpc",
            "type": "STRICT_DNS",
            "connect_timeout": {
              "seconds": 5,
              "nanos": 0
            },
            "lb_policy": "ROUND_ROBIN",
             "load_assignment": {
               "cluster_name": "xds-grpc",
               "endpoints": [{
                 "lb_endpoints": [{
                   "endpoint": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 9.5K bytes
    - Viewed (0)
Back to top