Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for google_grpc (0.19 sec)

  1. tools/packaging/common/gcp_envoy_bootstrap.json

        "cds_config": {
          "resource_api_version": "V3",
          "ads": {}
        },
        "ads_config": {
          "api_type": "GRPC",
          "transport_api_version": "V3",
          "grpc_services": [
            {
              "google_grpc": {
                "target_uri": "{{ .discovery_address }}",
                "stat_prefix": "googlegrpcxds",
                "channel_credentials": {
                  "ssl_credentials": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/envoy/proxy.go

    	/* #nosec */
    	cmd := exec.Command(e.BinaryPath, args...)
    	cmd.Env = os.Environ()
    	if common_features.CompliancePolicy == common_features.FIPS_140_2 {
    		// Limit the TLSv1.2 ciphers in google_grpc client in Envoy to the compliant ciphers.
    		cmd.Env = append(cmd.Env,
    			"GRPC_SSL_CIPHER_SUITES=ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pkg/bootstrap/config.go

    		"envoy.reloadable_features.http_reject_path_with_fragment":                                             false,
    	}
    	if policy == common_features.FIPS_140_2 {
    		// This flag limits google_grpc client in Envoy to TLSv1.2 as the maximum version.
    		runtimeFlags["envoy.reloadable_features.google_grpc_disable_tls_13"] = true
    	}
    	if !StripFragment {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy_delta.go

    					// Empty response, nothing to do
    					// This assumes internal types are always singleton
    					break
    				}
    				err := h(resp.Resources[0].Resource)
    				var errorResp *google_rpc.Status
    				if err != nil {
    					errorResp = &google_rpc.Status{
    						Code:    int32(codes.Internal),
    						Message: err.Error(),
    					}
    				}
    				// Send ACK/NACK
    				con.sendDeltaRequest(&discovery.DeltaDiscoveryRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. pkg/istio-agent/xds_proxy.go

    		if !healthEvent.Healthy {
    			req.ErrorDetail = &google_rpc.Status{
    				Code:    int32(codes.Internal),
    				Message: healthEvent.UnhealthyMessage,
    			}
    		}
    		proxy.sendHealthCheckRequest(req)
    		deltaReq := &discovery.DeltaDiscoveryRequest{TypeUrl: model.HealthInfoType}
    		if !healthEvent.Healthy {
    			deltaReq.ErrorDetail = &google_rpc.Status{
    				Code:    int32(codes.Internal),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy_test.go

    	wasmv3 "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    	google_rpc "google.golang.org/genproto/googleapis/rpc/status"
    	"google.golang.org/grpc"
    	"google.golang.org/grpc/credentials/insecure"
    	"google.golang.org/grpc/metadata"
    	"google.golang.org/grpc/test/bufconn"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top