mirror of https://github.com/kubernetes/kops.git
190 lines
5.2 KiB
Go
190 lines
5.2 KiB
Go
/*
|
|
Copyright 2019 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package bootstrap
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"k8s.io/klog/v2"
|
|
"k8s.io/kops/pkg/systemd"
|
|
"k8s.io/kops/upup/pkg/fi"
|
|
"k8s.io/kops/upup/pkg/fi/cloudup/scaleway"
|
|
"k8s.io/kops/upup/pkg/fi/nodeup/install"
|
|
"k8s.io/kops/upup/pkg/fi/nodeup/nodetasks"
|
|
"k8s.io/kops/util/pkg/distributions"
|
|
)
|
|
|
|
type Installation struct {
|
|
CacheDir string
|
|
RunTasksOptions fi.RunTasksOptions
|
|
Command []string
|
|
}
|
|
|
|
func (i *Installation) Run() error {
|
|
ctx := context.TODO()
|
|
|
|
_, err := distributions.FindDistribution("/")
|
|
if err != nil {
|
|
return fmt.Errorf("error determining OS distribution: %v", err)
|
|
}
|
|
|
|
tasks := make(map[string]fi.InstallTask)
|
|
|
|
buildContext := &fi.InstallModelBuilderContext{
|
|
Tasks: tasks,
|
|
}
|
|
i.Build(buildContext)
|
|
|
|
target := &install.InstallTarget{}
|
|
|
|
context, err := fi.NewInstallContext(ctx, target, tasks)
|
|
if err != nil {
|
|
return fmt.Errorf("error building context: %v", err)
|
|
}
|
|
|
|
err = context.RunTasks(i.RunTasksOptions)
|
|
if err != nil {
|
|
return fmt.Errorf("error running tasks: %v", err)
|
|
}
|
|
|
|
err = target.Finish(tasks)
|
|
if err != nil {
|
|
return fmt.Errorf("error finishing target: %v", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (i *Installation) Build(c *fi.InstallModelBuilderContext) {
|
|
c.AddTask(i.buildEnvFile())
|
|
c.AddTask(i.buildSystemdJob())
|
|
}
|
|
|
|
func (i *Installation) buildEnvFile() *nodetasks.InstallFile {
|
|
envVars := make(map[string]string)
|
|
|
|
if os.Getenv("AWS_REGION") != "" {
|
|
envVars["AWS_REGION"] = os.Getenv("AWS_REGION")
|
|
}
|
|
|
|
if os.Getenv("GOSSIP_DNS_CONN_LIMIT") != "" {
|
|
envVars["GOSSIP_DNS_CONN_LIMIT"] = os.Getenv("GOSSIP_DNS_CONN_LIMIT")
|
|
}
|
|
|
|
// Pass in required credentials when using user-defined s3 endpoint
|
|
if os.Getenv("S3_ENDPOINT") != "" {
|
|
envVars["S3_ENDPOINT"] = os.Getenv("S3_ENDPOINT")
|
|
envVars["S3_REGION"] = os.Getenv("S3_REGION")
|
|
envVars["S3_ACCESS_KEY_ID"] = os.Getenv("S3_ACCESS_KEY_ID")
|
|
envVars["S3_SECRET_ACCESS_KEY"] = os.Getenv("S3_SECRET_ACCESS_KEY")
|
|
}
|
|
|
|
// Pass in required credentials when using user-defined swift endpoint
|
|
if os.Getenv("OS_AUTH_URL") != "" {
|
|
for _, envVar := range []string{
|
|
"OS_TENANT_ID", "OS_TENANT_NAME", "OS_PROJECT_ID", "OS_PROJECT_NAME",
|
|
"OS_PROJECT_DOMAIN_NAME", "OS_PROJECT_DOMAIN_ID",
|
|
"OS_DOMAIN_NAME", "OS_DOMAIN_ID",
|
|
"OS_USERNAME",
|
|
"OS_PASSWORD",
|
|
"OS_AUTH_URL",
|
|
"OS_REGION_NAME",
|
|
"OS_APPLICATION_CREDENTIAL_ID",
|
|
"OS_APPLICATION_CREDENTIAL_SECRET",
|
|
} {
|
|
envVars[envVar] = os.Getenv(envVar)
|
|
}
|
|
}
|
|
|
|
if os.Getenv("DIGITALOCEAN_ACCESS_TOKEN") != "" {
|
|
envVars["DIGITALOCEAN_ACCESS_TOKEN"] = os.Getenv("DIGITALOCEAN_ACCESS_TOKEN")
|
|
}
|
|
|
|
if os.Getenv("HCLOUD_TOKEN") != "" {
|
|
envVars["HCLOUD_TOKEN"] = os.Getenv("HCLOUD_TOKEN")
|
|
}
|
|
|
|
if os.Getenv("OSS_REGION") != "" {
|
|
envVars["OSS_REGION"] = os.Getenv("OSS_REGION")
|
|
}
|
|
|
|
if os.Getenv("ALIYUN_ACCESS_KEY_ID") != "" {
|
|
envVars["ALIYUN_ACCESS_KEY_ID"] = os.Getenv("ALIYUN_ACCESS_KEY_ID")
|
|
envVars["ALIYUN_ACCESS_KEY_SECRET"] = os.Getenv("ALIYUN_ACCESS_KEY_SECRET")
|
|
}
|
|
|
|
if os.Getenv("AZURE_STORAGE_ACCOUNT") != "" {
|
|
envVars["AZURE_STORAGE_ACCOUNT"] = os.Getenv("AZURE_STORAGE_ACCOUNT")
|
|
}
|
|
|
|
if os.Getenv("SCW_PROFILE") != "" || os.Getenv("SCW_SECRET_KEY") != "" {
|
|
profile, err := scaleway.CreateValidScalewayProfile()
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
envVars["SCW_ACCESS_KEY"] = fi.ValueOf(profile.AccessKey)
|
|
envVars["SCW_SECRET_KEY"] = fi.ValueOf(profile.SecretKey)
|
|
envVars["SCW_DEFAULT_PROJECT_ID"] = fi.ValueOf(profile.DefaultProjectID)
|
|
}
|
|
|
|
sysconfig := ""
|
|
for key, value := range envVars {
|
|
sysconfig += key + "=" + value + "\n"
|
|
}
|
|
|
|
task := &nodetasks.InstallFile{File: nodetasks.File{
|
|
Path: "/etc/sysconfig/kops-configuration",
|
|
Contents: fi.NewStringResource(sysconfig),
|
|
Type: nodetasks.FileType_File,
|
|
}}
|
|
|
|
return task
|
|
}
|
|
|
|
func (i *Installation) buildSystemdJob() *nodetasks.InstallService {
|
|
command := strings.Join(i.Command, " ")
|
|
|
|
serviceName := "kops-configuration.service"
|
|
|
|
manifest := &systemd.Manifest{}
|
|
manifest.Set("Unit", "Description", "Run kOps bootstrap (nodeup)")
|
|
manifest.Set("Unit", "Documentation", "https://github.com/kubernetes/kops")
|
|
|
|
manifest.Set("Service", "EnvironmentFile", "/etc/sysconfig/kops-configuration")
|
|
manifest.Set("Service", "EnvironmentFile", "/etc/environment")
|
|
manifest.Set("Service", "ExecStart", command)
|
|
manifest.Set("Service", "Type", "oneshot")
|
|
|
|
manifest.Set("Install", "WantedBy", "multi-user.target")
|
|
|
|
manifestString := manifest.Render()
|
|
klog.V(8).Infof("Built service manifest %q\n%s", serviceName, manifestString)
|
|
|
|
service := &nodetasks.InstallService{Service: nodetasks.Service{
|
|
Name: serviceName,
|
|
Definition: fi.PtrTo(manifestString),
|
|
Enabled: fi.PtrTo(false),
|
|
}}
|
|
|
|
service.InitDefaults()
|
|
|
|
return service
|
|
}
|