func init() { … } // NewCommand creates a *cobra.Command object with default parameters func NewCommand() *cobra.Command { … } func NewOptions() *options.Options { … } // Run runs the specified APIServer. This should never exit. func Run(ctx context.Context, opts options.CompletedOptions) error { … } // CreateServerChain creates the apiservers connected via delegation. func CreateServerChain(config CompletedConfig) (*aggregatorapiserver.APIAggregator, error) { … }