Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for grpcStatus (0.19 sec)

  1. pilot/pkg/networking/core/route/route.go

    			// the validation webhook would have already caught the invalid
    			// code and we wouldn't reach here.
    			out.Abort.ErrorType = &xdshttpfault.FaultAbort_GrpcStatus{
    				GrpcStatus: uint32(grpc.SupportedGRPCStatus[a.GrpcStatus]),
    			}
    		default:
    			log.Warnf("Only HTTP and gRPC type abort faults are supported")
    			out.Abort = nil
    		}
    	}
    
    	if out.Delay == nil && out.Abort == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. pkg/config/validation/validation_test.go

    				Value: 20,
    			},
    			ErrorType: &networking.HTTPFaultInjection_Abort_GrpcStatus{
    				GrpcStatus: "DEADLINE_EXCEEDED",
    			},
    		}, valid: true},
    		{name: "grpc: valid default percentage", in: &networking.HTTPFaultInjection_Abort{
    			ErrorType: &networking.HTTPFaultInjection_Abort_GrpcStatus{
    				GrpcStatus: "DEADLINE_EXCEEDED",
    			},
    		}, valid: true},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                  - required:
                                    - grpcStatus
                                  - required:
                                    - http2Error
                              - required:
                                - httpStatus
                              - required:
                                - grpcStatus
                              - required:
                                - http2Error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                                  - required:
                                    - grpcStatus
                                  - required:
                                    - http2Error
                              - required:
                                - httpStatus
                              - required:
                                - grpcStatus
                              - required:
                                - http2Error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                                  - required:
                                    - grpcStatus
                                  - required:
                                    - http2Error
                              - required:
                                - httpStatus
                              - required:
                                - grpcStatus
                              - required:
                                - http2Error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

            host: {{ (index .dst 0).Config.Service }}
        fault:
          abort:
            percentage:
              value: 100
            grpcStatus: "UNAVAILABLE"`,
    		opts: echo.CallOptions{
    			Port: echo.Port{
    				Name: "grpc",
    			},
    			Scheme: scheme.GRPC,
    			Count:  1,
    			Check:  check.GRPCStatus(codes.Unavailable),
    		},
    		workloadAgnostic: true,
    		sourceMatchers:   includeProxyless,
    	})
    	t.RunTraffic(TrafficTestCase{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    request attempts and return error codes back to downstream service, giving the impression that the upstream service is faulty. oneOf: - not: anyOf: - required: - httpStatus - required: - grpcStatus - required: - http2Error - required: - httpStatus - required: - grpcStatus - required: - http2Error properties: grpcStatus: description: GRPC status code to use to abort the request. type: string http2Error: type: string httpStatus: description: HTTP status code to use to abort the Http request. format: int32...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. tests/integration/telemetry/api/testdata/attributegen.yaml

          match:
          - value: getoperation
            condition: request.method == 'GET'
        - output_attribute: istio_grpcResponseStatus
          match:
          - value: OK
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 639 bytes
    - Viewed (0)
  9. pilot/pkg/xds/filters/filters.go

    			TypedConfig: protoconv.MessageToAny(&grpcweb.GrpcWeb{}),
    		},
    	}
    	GrpcStats = &hcm.HttpFilter{
    		Name: wellknown.HTTPGRPCStats,
    		ConfigType: &hcm.HttpFilter_TypedConfig{
    			TypedConfig: protoconv.MessageToAny(&grpcstats.FilterConfig{
    				EmitFilterState: true,
    				PerMethodStatSpecifier: &grpcstats.FilterConfig_StatsForAllMethods{
    					StatsForAllMethods: &wrapperspb.BoolValue{Value: false},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_builder.go

    		// GRPCWeb is probably only used for Gateways though, which don't have this concern.
    		filters = append(filters, xdsfilters.GrpcWeb)
    	}
    
    	filters = append(filters, xdsfilters.GrpcStats)
    
    	// append ALPN HTTP filter in HTTP connection manager for outbound listener only.
    	if features.ALPNFilter {
    		if httpOpts.class != istionetworking.ListenerClassSidecarInbound {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top