started kubernetes support
This commit is contained in:
@@ -46,7 +46,7 @@ type UserPassAuthConfig struct {
|
||||
|
||||
type AuthenticationConfig struct {
|
||||
Type AuthMode `yaml:"type"`
|
||||
Oidc OidcAuthConfig `yaml:"oidc"`
|
||||
NOidc OidcAuthConfig `yaml:"oidc"`
|
||||
UserPass UserPassAuthConfig `yaml:"user_pass"`
|
||||
}
|
||||
|
||||
@@ -68,9 +68,14 @@ type DockerInstanceManagerConfig struct {
|
||||
FileBrowser FileBrowserConfig `yaml:"file_browser"`
|
||||
}
|
||||
|
||||
type KubernetesInstanceManagerConfig struct {
|
||||
Namespace string `yaml:"namespace"`
|
||||
}
|
||||
|
||||
type InstanceManagerConfig struct {
|
||||
Type InstanceManagerType `yaml:"type"`
|
||||
Docker *DockerInstanceManagerConfig `yaml:"docker"`
|
||||
Type InstanceManagerType `yaml:"type"`
|
||||
Docker *DockerInstanceManagerConfig `yaml:"docker"`
|
||||
Kubernetes *KubernetesInstanceManagerConfig `yaml:"kubernetes"`
|
||||
}
|
||||
|
||||
type ServersDatabaseConfig struct {
|
||||
|
Reference in New Issue
Block a user