cloudinit/initialize/config.go

190 lines
4.9 KiB
Go
Raw Normal View History

2014-03-18 09:00:41 -07:00
package initialize
2014-03-04 16:36:05 -08:00
import (
"fmt"
2014-03-04 16:36:05 -08:00
"log"
2014-03-18 09:00:41 -07:00
"path"
2014-03-04 16:36:05 -08:00
2014-03-12 19:36:31 -07:00
"github.com/coreos/coreos-cloudinit/third_party/launchpad.net/goyaml"
2014-03-04 16:36:05 -08:00
2014-03-18 09:00:41 -07:00
"github.com/coreos/coreos-cloudinit/system"
)
2014-03-04 16:36:05 -08:00
type CloudConfig struct {
SSHAuthorizedKeys []string `yaml:"ssh_authorized_keys"`
Coreos struct {
2014-03-17 15:09:59 -07:00
Etcd EtcdEnvironment
2014-03-18 09:00:41 -07:00
Units []system.Unit
OEM OEMRelease
}
WriteFiles []system.File `yaml:"write_files"`
Hostname string
Users []system.User
ManageEtcHosts string `yaml:"manage_etc_hosts"`
2014-03-04 16:36:05 -08:00
}
func NewCloudConfig(contents string) (*CloudConfig, error) {
2014-03-04 16:36:05 -08:00
var cfg CloudConfig
err := goyaml.Unmarshal([]byte(contents), &cfg)
2014-03-04 16:36:05 -08:00
return &cfg, err
}
func (cc CloudConfig) String() string {
bytes, err := goyaml.Marshal(cc)
if err != nil {
2014-03-04 16:36:05 -08:00
return ""
}
stringified := string(bytes)
stringified = fmt.Sprintf("#cloud-config\n%s", stringified)
return stringified
2014-03-04 16:36:05 -08:00
}
2014-03-18 09:00:41 -07:00
func Apply(cfg CloudConfig, env *Environment) error {
if cfg.Hostname != "" {
2014-03-18 09:00:41 -07:00
if err := system.SetHostname(cfg.Hostname); err != nil {
return err
}
log.Printf("Set hostname to %s", cfg.Hostname)
}
if cfg.Coreos.OEM.ID != "" {
if err := WriteOEMRelease(&cfg.Coreos.OEM, env.Root()); err != nil {
return err
}
log.Printf("Wrote /etc/oem-release to filesystem")
}
if len(cfg.Users) > 0 {
for _, user := range cfg.Users {
if user.Name == "" {
log.Printf("User object has no 'name' field, skipping")
continue
}
2014-03-18 09:00:41 -07:00
if system.UserExists(&user) {
log.Printf("User '%s' exists, ignoring creation-time fields", user.Name)
if user.PasswordHash != "" {
log.Printf("Setting '%s' user's password", user.Name)
2014-03-18 09:00:41 -07:00
if err := system.SetUserPassword(user.Name, user.PasswordHash); err != nil {
log.Printf("Failed setting '%s' user's password: %v", user.Name, err)
return err
}
}
} else {
log.Printf("Creating user '%s'", user.Name)
2014-03-18 09:00:41 -07:00
if err := system.CreateUser(&user); err != nil {
log.Printf("Failed creating user '%s': %v", user.Name, err)
return err
}
}
if len(user.SSHAuthorizedKeys) > 0 {
log.Printf("Authorizing %d SSH keys for user '%s'", len(user.SSHAuthorizedKeys), user.Name)
2014-03-18 09:00:41 -07:00
if err := system.AuthorizeSSHKeys(user.Name, env.SSHKeyName(), user.SSHAuthorizedKeys); err != nil {
return err
}
}
if user.SSHImportGithubUser != "" {
log.Printf("Authorizing github user %s SSH keys for CoreOS user '%s'", user.SSHImportGithubUser, user.Name)
if err := SSHImportGithubUser(user.Name, user.SSHImportGithubUser); err != nil {
return err
}
}
if user.SSHImportURL != "" {
log.Printf("Authorizing SSH keys for CoreOS user '%s' from '%s'", user.Name, user.SSHImportURL)
if err := SSHImportKeysFromURL(user.Name, user.SSHImportURL); err != nil {
return err
}
}
}
}
if len(cfg.SSHAuthorizedKeys) > 0 {
2014-03-18 09:00:41 -07:00
err := system.AuthorizeSSHKeys("core", env.SSHKeyName(), cfg.SSHAuthorizedKeys)
2014-03-04 16:36:05 -08:00
if err == nil {
log.Printf("Authorized SSH keys for core user")
} else {
return err
}
}
if len(cfg.WriteFiles) > 0 {
for _, file := range cfg.WriteFiles {
2014-03-18 09:00:41 -07:00
file.Path = path.Join(env.Root(), file.Path)
if err := system.WriteFile(&file); err != nil {
return err
}
log.Printf("Wrote file %s to filesystem", file.Path)
}
}
2014-03-17 15:09:59 -07:00
if len(cfg.Coreos.Etcd) > 0 {
2014-03-18 09:00:41 -07:00
if err := WriteEtcdEnvironment(cfg.Coreos.Etcd, env.Root()); err != nil {
2014-03-17 15:09:59 -07:00
log.Fatalf("Failed to write etcd config to filesystem: %v", err)
2014-03-04 16:36:05 -08:00
}
2014-03-17 15:09:59 -07:00
log.Printf("Wrote etcd config file to filesystem")
2014-03-04 16:36:05 -08:00
}
2014-03-12 15:43:51 -07:00
if len(cfg.Coreos.Units) > 0 {
commands := make(map[string]string, 0)
2014-03-12 15:43:51 -07:00
for _, unit := range cfg.Coreos.Units {
dst := system.UnitDestination(&unit, env.Root())
if unit.Content != "" {
log.Printf("Writing unit %s to filesystem at path %s", unit.Name, dst)
if err := system.PlaceUnit(&unit, dst); err != nil {
return err
}
log.Printf("Placed unit %s at %s", unit.Name, dst)
}
if unit.Enable {
if unit.Group() != "network" {
log.Printf("Enabling unit file %s", dst)
if err := system.EnableUnitFile(dst, unit.Runtime); err != nil {
return err
}
log.Printf("Enabled unit %s", unit.Name)
} else {
log.Printf("Skipping enable for network-like unit %s", unit.Name)
}
2014-03-12 15:43:51 -07:00
}
2014-03-24 14:12:52 -07:00
if unit.Group() == "network" {
commands["systemd-networkd.service"] = "restart"
2014-03-24 14:12:52 -07:00
} else {
if unit.Command != "" {
commands[unit.Name] = unit.Command
2014-03-24 14:12:52 -07:00
}
2014-03-12 15:43:51 -07:00
}
}
if err := system.DaemonReload(); err != nil {
log.Fatalf("Failed systemd daemon-reload: %v", err)
}
for unit, command := range commands {
log.Printf("Calling unit command '%s %s'", command, unit)
res, err := system.RunUnitCommand(command, unit)
if err != nil {
return err
}
log.Printf("Result of '%s %s': %s", command, unit, res)
}
2014-03-12 15:43:51 -07:00
}
if cfg.ManageEtcHosts != "" {
if err := WriteEtcHosts(cfg.ManageEtcHosts, env.Root()); err != nil {
log.Fatalf("Failed to write /etc/hosts to filesystem: %v", err)
}
log.Printf("Wrote /etc/hosts file to filesystem")
}
2014-03-04 16:36:05 -08:00
return nil
}