Documentation
¶
Index ¶
- func Asset(name string) ([]byte, error)
- func AssetDir(name string) ([]string, error)
- func AssetNames() []string
- func CacheControlHandler(version string, h http.Handler) http.Handler
- func GeneratedConfigHandler(config WebConsoleConfig, h http.Handler) http.Handler
- func GzipHandler(h http.Handler) http.Handler
- func HTML5ModeHandler(h http.Handler) http.Handler
- type WebConsoleConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Asset ¶
Asset loads and returns the asset for the given name. It returns an error if the asset could not be found or could not be loaded.
func AssetDir ¶
AssetDir returns the file names below a certain directory embedded in the file by go-bindata. For example if you run go-bindata on data/... and data contains the following hierarchy:
data/
foo.txt
img/
a.png
b.png
then AssetDir("data") would return []string{"foo.txt", "img"} AssetDir("data/img") would return []string{"a.png", "b.png"} AssetDir("foo.txt") and AssetDir("notexist") would return an error AssetDir("") will return []string{"data"}.
func CacheControlHandler ¶ added in v0.2.1
func GeneratedConfigHandler ¶ added in v0.2.1
func GeneratedConfigHandler(config WebConsoleConfig, h http.Handler) http.Handler
func GzipHandler ¶ added in v0.2.1
Wrap a http.Handler to support transparent gzip encoding.
Types ¶
type WebConsoleConfig ¶ added in v0.2.2
type WebConsoleConfig struct {
// MasterAddr is the host:port the UI should call the master API on. Scheme is derived from the scheme the UI is served on, so they must be the same.
MasterAddr string
// MasterPrefix is the OpenShift API context root
MasterPrefix string
// KubernetesAddr is the host:port the UI should call the kubernetes API on. Scheme is derived from the scheme the UI is served on, so they must be the same.
KubernetesAddr string
// KubernetesPrefix is the Kubernetes API context root
KubernetesPrefix string
// OAuthAuthorizeURL is the OAuth2 endpoint to use to request an API token. It must support request_type=token.
OAuthAuthorizeURL string
// OAuthClientID is the OAuth2 client_id to use to request an API token. It must be authorized to redirect to the web console URL.
OAuthClientID string
}
Click to show internal directories.
Click to hide internal directories.