mirror of https://github.com/kubernetes/kops.git
98 lines
2.3 KiB
Go
98 lines
2.3 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 main
|
|
|
|
import (
|
|
"context"
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"k8s.io/kops/util/pkg/vfs"
|
|
)
|
|
|
|
// registryBase is the base path where state files are kept (the state store)
|
|
var registryBase vfs.Path
|
|
|
|
// clusterName is the name of the cluster to create
|
|
var clusterName string
|
|
|
|
// nodeZones is the set of zones in which we will run nodes
|
|
var nodeZones []string
|
|
|
|
// masterZones is the set of zones in which we will run masters
|
|
var masterZones []string
|
|
|
|
var sshPublicKey = "~/.ssh/id_rsa.pub"
|
|
|
|
var etcdClusters = []string{"main", "events"}
|
|
|
|
var (
|
|
flagRegistryBase = flag.String("registry", os.Getenv("KOPS_STATE_STORE"), "VFS path where files are kept")
|
|
flagClusterName = flag.String("name", "", "Name of cluster to create")
|
|
flagZones = flag.String("zones", "", "Comma separated list of zones to create")
|
|
)
|
|
|
|
func main() {
|
|
flag.Parse()
|
|
|
|
vfsContext := vfs.NewVFSContext()
|
|
|
|
err := parseFlags(vfsContext)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "%v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
ctx := context.TODO()
|
|
|
|
err = up(vfsContext, ctx)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "error from up: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
err = apply(vfsContext, ctx)
|
|
if err != nil {
|
|
fmt.Fprintf(os.Stderr, "error from apply: %v\n", err)
|
|
os.Exit(1)
|
|
}
|
|
}
|
|
|
|
func parseFlags(vfsContext *vfs.VFSContext) error {
|
|
var err error
|
|
|
|
registryBase, err = vfsContext.BuildVfsPath(*flagRegistryBase)
|
|
if err != nil {
|
|
return fmt.Errorf("error parsing registry path %q: %v", *flagRegistryBase, err)
|
|
}
|
|
|
|
clusterName = *flagClusterName
|
|
if clusterName == "" {
|
|
return fmt.Errorf("Must pass -name with cluster name")
|
|
}
|
|
|
|
if *flagZones == "" {
|
|
return fmt.Errorf("Must pass -zones with comma-separated list of zones")
|
|
}
|
|
nodeZones = strings.Split(*flagZones, ",")
|
|
masterZones = []string{nodeZones[0]}
|
|
|
|
return nil
|
|
}
|