Documentation ¶
Overview ¶
+kubebuilder:validation:Optional
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Constructor ¶
type Constructor struct { // Name of http server instance -- empty for main server. Gateway name will be the same as HTTP server name Name string // Config key ConfigKey string // Default gateway config DefaultConfig GRPCGatewayConfig }
Constructor holds fields to configure grpc-http gateway.
func (Constructor) Annotate ¶
func (constructor Constructor) Annotate() fx.Option
Annotate returns fx options that set up grpc-http gateway.
type GRPCGateway ¶
type GRPCGateway struct {
// contains filtered or unexported fields
}
GRPCGateway holds fields required for grpc-http gateway.
type GRPCGatewayConfig ¶
type GRPCGatewayConfig struct { // GRPC server address to connect to - By default it points to HTTP server port because FluxNinja stack runs GRPC and HTTP servers on the same port GRPCAddr string `json:"grpc_server_address" validate:"hostname_port" default:"0.0.0.0:1"` }
GRPCGatewayConfig holds configuration for grpc-http gateway swagger:model
type RegisterHandler ¶
type RegisterHandler struct { // Handler func to invoke on start Handler RegisterHandlerFunc // gateway instance to register with -- empty = default gateway Name string }
RegisterHandler holds fields to register grpc-http gateway handlers.
func (RegisterHandler) Annotate ¶
func (rh RegisterHandler) Annotate() fx.Option
Annotate annotates handler function in rh and returns it. These handlers can be registered with grpc-http gateway.
type RegisterHandlerFunc ¶
RegisterHandlerFunc is a handler function that registers grpc-http gateway handlers.
Click to show internal directories.
Click to hide internal directories.