Versions in this module Expand all Collapse all v0 v0.1.0 Mar 29, 2024 Changes in this version + var ErrCannotCreateContainer = fmt.Errorf("cannot create container") + type Container struct + func NewContainer() *Container + func (c *Container) HTTPServeMux() *httpx.ServeMux + func (c *Container) HTTPServer() *http.Server + func (c *Container) K8sHTTPClient() *http.Client + func (c *Container) K8sHTTPProxy() *proxy.HTTP + func (c *Container) K8sRestConfig() *rest.Config + func (c *Container) RESTClientFactory() *kube.DefaultRESTClientFactory + func (c *Container) RESTConfigFactory() *kube.DefaultRESTConfigFactory + type ContainerFactoryFunc func() (*Container, error) + type Parameters struct + APIAllowedOrigins []string + APIServerHost string + APIServerPort uint16 + APIServerTimeout time.Duration + Config config.Config + KubeconfigPath string + func NewDefaultParameters() Parameters