Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 137 for Eads (0.07 sec)

  1. pilot/pkg/xds/auth.go

    	"google.golang.org/grpc/status"
    
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/spiffe"
    )
    
    // 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. istioctl/pkg/authz/analyzer.go

    func (a *Analyzer) Print(writer io.Writer) {
    	var listeners []*listener.Listener
    	for _, l := range a.listenerDump.DynamicListeners {
    		listenerTyped := &listener.Listener{}
    		// Support v2 or v3 in config dump. See ads.go:RequestedTypes for more info.
    		l.ActiveState.Listener.TypeUrl = v3.ListenerType
    		err := l.ActiveState.Listener.UnmarshalTo(listenerTyped)
    		if err != nil {
    			return
    		}
    		listeners = append(listeners, listenerTyped)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 01:59:17 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/bootstrap/testdata/stats_compression_unknown_golden.json

            "address": "127.0.0.1",
            "port_value": 15005
          }
        }
      },
      "dynamic_resources": {
        "lds_config": {
          "ads": {},
          "initial_fetch_timeout": "0s",
          "resource_api_version": "V3"
        },
        "cds_config": {
          "ads": {},
          "initial_fetch_timeout": "0s",
          "resource_api_version": "V3"
        },
        "ads_config": {
          "api_type": "DELTA_GRPC",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/stats_compression_zstd_golden.json

            "address": "127.0.0.1",
            "port_value": 15005
          }
        }
      },
      "dynamic_resources": {
        "lds_config": {
          "ads": {},
          "initial_fetch_timeout": "0s",
          "resource_api_version": "V3"
        },
        "cds_config": {
          "ads": {},
          "initial_fetch_timeout": "0s",
          "resource_api_version": "V3"
        },
        "ads_config": {
          "api_type": "DELTA_GRPC",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. 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)
  8. pkg/bootstrap/testdata/stats_compression_gzip_golden.json

            "address": "127.0.0.1",
            "port_value": 15005
          }
        }
      },
      "dynamic_resources": {
        "lds_config": {
          "ads": {},
          "initial_fetch_timeout": "0s",
          "resource_api_version": "V3"
        },
        "cds_config": {
          "ads": {},
          "initial_fetch_timeout": "0s",
          "resource_api_version": "V3"
        },
        "ads_config": {
          "api_type": "DELTA_GRPC",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. 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)
  10. pkg/bootstrap/testdata/stats_compression_brotli_golden.json

            "address": "127.0.0.1",
            "port_value": 15005
          }
        }
      },
      "dynamic_resources": {
        "lds_config": {
          "ads": {},
          "initial_fetch_timeout": "0s",
          "resource_api_version": "V3"
        },
        "cds_config": {
          "ads": {},
          "initial_fetch_timeout": "0s",
          "resource_api_version": "V3"
        },
        "ads_config": {
          "api_type": "DELTA_GRPC",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top