mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
148 lines
4.2 KiB
148 lines
4.2 KiB
/*
|
|
Copyright 2016 The Kubernetes Authors All rights reserved.
|
|
|
|
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 (
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"k8s.io/helm/cmd/helm/installer"
|
|
)
|
|
|
|
const initDesc = `
|
|
This command installs Tiller (the helm server side component) onto your
|
|
Kubernetes Cluster and sets up local configuration in $HELM_HOME (default: ~/.helm/)
|
|
`
|
|
|
|
var (
|
|
defaultRepository = "kubernetes-charts"
|
|
defaultRepositoryURL = "http://storage.googleapis.com/kubernetes-charts"
|
|
)
|
|
|
|
type initCmd struct {
|
|
image string
|
|
clientOnly bool
|
|
out io.Writer
|
|
}
|
|
|
|
func newInitCmd(out io.Writer) *cobra.Command {
|
|
i := &initCmd{
|
|
out: out,
|
|
}
|
|
cmd := &cobra.Command{
|
|
Use: "init",
|
|
Short: "initialize Helm on both client and server",
|
|
Long: initDesc,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
if len(args) != 0 {
|
|
return errors.New("This command does not accept arguments")
|
|
}
|
|
return i.run()
|
|
},
|
|
}
|
|
cmd.Flags().StringVarP(&i.image, "tiller-image", "i", "", "override tiller image")
|
|
cmd.Flags().BoolVarP(&i.clientOnly, "client-only", "c", false, "If set does not install tiller")
|
|
return cmd
|
|
}
|
|
|
|
// runInit initializes local config and installs tiller to Kubernetes Cluster
|
|
func (i *initCmd) run() error {
|
|
if err := ensureHome(); err != nil {
|
|
return err
|
|
}
|
|
|
|
if !i.clientOnly {
|
|
if err := installer.Install(tillerNamespace, i.image, flagDebug); err != nil {
|
|
if !strings.Contains(err.Error(), `"tiller-deploy" already exists`) {
|
|
return fmt.Errorf("error installing: %s", err)
|
|
}
|
|
fmt.Fprintln(i.out, "Warning: Tiller is already installed in the cluster. (Use --client-only to suppress this message.)")
|
|
} else {
|
|
fmt.Fprintln(i.out, "\nTiller (the helm server side component) has been installed into your Kubernetes Cluster.")
|
|
}
|
|
} else {
|
|
fmt.Fprintln(i.out, "Not installing tiller due to 'client-only' flag having been set")
|
|
}
|
|
fmt.Fprintln(i.out, "Happy Helming!")
|
|
return nil
|
|
}
|
|
|
|
func requireHome() error {
|
|
dirs := []string{homePath(), repositoryDirectory(), cacheDirectory(), localRepoDirectory()}
|
|
for _, d := range dirs {
|
|
if fi, err := os.Stat(d); err != nil {
|
|
return fmt.Errorf("directory %q is not configured", d)
|
|
} else if !fi.IsDir() {
|
|
return fmt.Errorf("expected %q to be a directory", d)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// ensureHome checks to see if $HELM_HOME exists
|
|
//
|
|
// If $HELM_HOME does not exist, this function will create it.
|
|
func ensureHome() error {
|
|
configDirectories := []string{homePath(), repositoryDirectory(), cacheDirectory(), localRepoDirectory()}
|
|
|
|
for _, p := range configDirectories {
|
|
if fi, err := os.Stat(p); err != nil {
|
|
fmt.Printf("Creating %s \n", p)
|
|
if err := os.MkdirAll(p, 0755); err != nil {
|
|
return fmt.Errorf("Could not create %s: %s", p, err)
|
|
}
|
|
} else if !fi.IsDir() {
|
|
return fmt.Errorf("%s must be a directory", p)
|
|
}
|
|
}
|
|
|
|
repoFile := repositoriesFile()
|
|
if fi, err := os.Stat(repoFile); err != nil {
|
|
fmt.Printf("Creating %s \n", repoFile)
|
|
if _, err := os.Create(repoFile); err != nil {
|
|
return err
|
|
}
|
|
if err := addRepository(defaultRepository, defaultRepositoryURL); err != nil {
|
|
return err
|
|
}
|
|
} else if fi.IsDir() {
|
|
return fmt.Errorf("%s must be a file, not a directory", repoFile)
|
|
}
|
|
|
|
localRepoIndexFile := localRepoDirectory(localRepoIndexFilePath)
|
|
if fi, err := os.Stat(localRepoIndexFile); err != nil {
|
|
fmt.Printf("Creating %s \n", localRepoIndexFile)
|
|
_, err := os.Create(localRepoIndexFile)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
//TODO: take this out and replace with helm update functionality
|
|
os.Symlink(localRepoIndexFile, cacheDirectory("local-index.yaml"))
|
|
} else if fi.IsDir() {
|
|
return fmt.Errorf("%s must be a file, not a directory", localRepoIndexFile)
|
|
}
|
|
|
|
fmt.Printf("$HELM_HOME has been configured at %s.\n", helmHome)
|
|
return nil
|
|
}
|