Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for Eads (0.08 sec)

  1. pkg/security/authentication.go

    )
    
    var AuthPlaintext = env.Register("XDS_AUTH_PLAINTEXT", false,
    	"authenticate plain text requests - used if Istiod is running on a secure/trusted network").Get()
    
    // Authenticate authenticates the ADS request using the configured authenticators.
    // Returns the validated principals or an error.
    // If no authenticators are configured, or if the request is on a non-secure
    // stream ( 15010 ) - returns amn empty caller and no errors.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 10:09:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pilot/pkg/xds/cds_test.go

    	"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{})
    	ads := s.ConnectADS().WithType(v3.ClusterType)
    	ads.RequestResponseAck(t, nil)
    }
    
    func TestSAN(t *testing.T) {
    	labels := map[string]string{"app": "test"}
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "pod",
    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. istioctl/pkg/writer/envoy/configdump/route.go

    	}
    	routes := make([]*route.RouteConfiguration, 0)
    	for _, r := range routeDump.DynamicRouteConfigs {
    		if r.RouteConfig != nil {
    			routeTyped := &route.RouteConfiguration{}
    			// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    			r.RouteConfig.TypeUrl = v3.RouteType
    			err = r.RouteConfig.UnmarshalTo(routeTyped)
    			if err != nil {
    				return nil, err
    			}
    			routes = append(routes, routeTyped)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. istioctl/pkg/util/configdump/route.go

    	routeDump, err := w.GetRouteConfigDump()
    	if err != nil {
    		return nil, err
    	}
    	drc := routeDump.GetDynamicRouteConfigs()
    	// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    	for i := range drc {
    		drc[i].RouteConfig.TypeUrl = v3.RouteType
    	}
    	sort.Slice(drc, func(i, j int) bool {
    		r := &route.RouteConfiguration{}
    		err = drc[i].RouteConfig.UnmarshalTo(r)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. pilot/pkg/autoregistration/connections.go

    	connections := m.byProxy[k]
    	if connections == nil {
    		connections = make(map[string]connection)
    		m.byProxy[k] = connections
    	}
    	connections[conn.ID()] = conn
    }
    
    // Disconnect tracks disconnect events of ads clients.
    // Returns false once there are no more connections for the given proxy.
    func (m *adsConnections) Disconnect(conn connection) bool {
    	m.Lock()
    	defer m.Unlock()
    
    	k := makeProxyKey(conn.Proxy())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. architecture/security/istio-agent.md

    requests to the agent, causing the agent to submit a CSR to the configured CA (generally Istiod). For other configuration,
    Envoy will send [ADS](https://www.envoyproxy.io/docs/envoy/latest/intro/arch_overview/operations/dynamic_configuration#aggregated-xds-ads)
    requests to the agent, which will be forwarded to the configured discovery server (general Istiod).
    
    ## CA Flow
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/cds.go

    	if defaultCluster != nil {
    		out = append(out, defaultCluster)
    	}
    	return append(out, subsetClusters...)
    }
    
    // edsCluster creates a simple cluster to read endpoints from ads/eds.
    func edsCluster(name string) *cluster.Cluster {
    	return &cluster.Cluster{
    		Name:                 name,
    		ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/AbstractStreamingHasher.java

      /**
       * This is invoked for the last bytes of the input, which are not enough to fill a whole chunk.
       * The passed {@code ByteBuffer} is guaranteed to be non-empty.
       *
       * <p>This implementation simply pads with zeros and delegates to {@link #process(ByteBuffer)}.
       */
      protected void processRemaining(ByteBuffer bb) {
        Java8Compatibility.position(bb, bb.limit()); // move at the end
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  9. src/crypto/aes/gcm_ppc64x.go

    func gcmInc32(counterBlock *[16]byte) {
    	c := counterBlock[len(counterBlock)-4:]
    	x := byteorder.BeUint32(c) + 1
    	byteorder.BePutUint32(c, x)
    }
    
    // paddedGHASH pads data with zeroes until its length is a multiple of
    // 16-bytes. It then calculates a new value for hash using the ghash
    // algorithm.
    func (g *gcmAsm) paddedGHASH(hash *[16]byte, data []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/extension/wasmplugin.go

    	"istio.io/istio/pkg/util/sets"
    	_ "istio.io/istio/pkg/wasm" // include for registering wasm logging scope
    )
    
    var defaultConfigSource = &core.ConfigSource{
    	ConfigSourceSpecifier: &core.ConfigSource_Ads{
    		Ads: &core.AggregatedConfigSource{},
    	},
    	ResourceApiVersion: core.ApiVersion_V3,
    	// we block proxy init until WasmPlugins are loaded because they might be
    	// critical for security (e.g. authn/authz)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top