Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type BrokerServerOptions ¶
type BrokerServerOptions struct { // the runtime configuration of our server GenericServerRunOptions *genericserveroptions.ServerRunOptions // the https configuration. certs, etc //ServingOptions *genericserveroptions.ServingOptions ServingOptions *genericserveroptions.SecureServingOptions // storage with etcd EtcdOptions *genericserveroptions.EtcdOptions // authn AuthenticationOptions *genericserveroptions.DelegatingAuthenticationOptions // authz AuthorizationOptions *genericserveroptions.DelegatingAuthorizationOptions RecommendedOptions *genericserveroptions.RecommendedOptions }
BrokerServerOptions contains the aggregation of configuration structs for the service-catalog server. The theory here is that any future user of this server will be able to use this options object as a sub options of its own.
func NewBrokerServerOptions ¶
func NewBrokerServerOptions() *BrokerServerOptions
NewBrokerServerOptions returns the default BrokerServerOptions
func (BrokerServerOptions) RunServer ¶
func (serverOptions BrokerServerOptions) RunServer(stopCh <-chan struct{}) error
RunServer starts up the generic api server
Click to show internal directories.
Click to hide internal directories.