Merge pull request #102 from dlorenc/privileged

Allow privileged pods.
pull/106/head
Lucas Käldström 2016-05-24 17:49:57 +03:00
commit 95498a23dd
2 changed files with 4 additions and 0 deletions

View File

@ -55,6 +55,8 @@ func StartAPIServer(lk LocalkubeServer) func() error {
config.EnableWatchCache = true
config.MinRequestTimeout = 1800
config.AllowPrivileged = true
return func() error {
return apiserver.Run(config)
}

View File

@ -38,6 +38,8 @@ func StartKubeletServer(lk LocalkubeServer) func() error {
// Set containerized based on the flag
config.Containerized = lk.Containerized
config.AllowPrivileged = true
// Networking
config.ClusterDomain = lk.DNSDomain
config.ClusterDNS = lk.DNSIP.String()