1
0
mirror of https://github.com/rancher/os.git synced 2025-08-23 00:55:41 +00:00
os/config/docker_config.go
2021-02-19 09:38:44 -03:00

72 lines
1.6 KiB
Go

package config
import (
"fmt"
"os"
"github.com/fatih/structs"
)
func (d *DockerConfig) FullArgs() []string {
args := []string{}
args = append(args, generateEngineOptsSlice(d.EngineOpts)...)
args = append(args, d.ExtraArgs...)
// Make sure that OOM killer will kill containers before user docker
// https://github.com/burmilla/os/issues/33
args = append(args, "--oom-score-adjust")
args = append(args, "-250")
if d.TLS {
args = append(args, d.TLSArgs...)
}
if d.UserNsEnabled {
args = append(args, "--userns-remap")
args = append(args, "user-docker:user-docker")
}
return args
}
func (d *DockerConfig) AppendEnv() []string {
return append(os.Environ(), d.Environment...)
}
func generateEngineOptsSlice(opts EngineOpts) []string {
optsStruct := structs.New(opts)
var optsSlice []string
for k, v := range optsStruct.Map() {
optTag := optsStruct.Field(k).Tag("opt")
switch value := v.(type) {
case string:
if value != "" {
optsSlice = append(optsSlice, fmt.Sprintf("--%s", optTag), value)
}
case *bool:
if value != nil {
if *value {
optsSlice = append(optsSlice, fmt.Sprintf("--%s", optTag))
} else {
optsSlice = append(optsSlice, fmt.Sprintf("--%s=false", optTag))
}
}
case []string:
for _, elem := range value {
if elem != "" {
optsSlice = append(optsSlice, fmt.Sprintf("--%s", optTag), elem)
}
}
case map[string]string:
for k, v := range value {
if v != "" {
optsSlice = append(optsSlice, fmt.Sprintf("--%s", optTag), fmt.Sprintf("%s=%s", k, v))
}
}
}
}
return optsSlice
}