mirror of https://github.com/kubernetes/kops.git
214 lines
5.7 KiB
Go
214 lines
5.7 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"
|
|
"fmt"
|
|
"io"
|
|
|
|
"github.com/spf13/cobra"
|
|
"k8s.io/client-go/tools/clientcmd"
|
|
"k8s.io/klog/v2"
|
|
"k8s.io/kops/cmd/kops/util"
|
|
kopsapi "k8s.io/kops/pkg/apis/kops"
|
|
"k8s.io/kops/pkg/commands/commandutils"
|
|
"k8s.io/kops/pkg/kubeconfig"
|
|
"k8s.io/kops/pkg/resources"
|
|
resourceops "k8s.io/kops/pkg/resources/ops"
|
|
"k8s.io/kops/upup/pkg/fi"
|
|
"k8s.io/kops/upup/pkg/fi/cloudup"
|
|
"k8s.io/kops/upup/pkg/fi/cloudup/awsup"
|
|
"k8s.io/kops/util/pkg/tables"
|
|
"k8s.io/kubectl/pkg/util/i18n"
|
|
"k8s.io/kubectl/pkg/util/templates"
|
|
)
|
|
|
|
type DeleteClusterOptions struct {
|
|
Yes bool
|
|
Region string
|
|
External bool
|
|
Unregister bool
|
|
ClusterName string
|
|
}
|
|
|
|
var (
|
|
deleteClusterLong = templates.LongDesc(i18n.T(`
|
|
Deletes a Kubernetes cluster and all associated resources. Resources include instancegroups,
|
|
secrets, and the state store. There is no "UNDO" for this command.
|
|
`))
|
|
|
|
deleteClusterExample = templates.Examples(i18n.T(`
|
|
# Delete a cluster.
|
|
# The --yes option runs the command immediately.
|
|
kops delete cluster --name=k8s.cluster.site --yes
|
|
|
|
`))
|
|
|
|
deleteClusterShort = i18n.T("Delete a cluster.")
|
|
)
|
|
|
|
func NewCmdDeleteCluster(f *util.Factory, out io.Writer) *cobra.Command {
|
|
options := &DeleteClusterOptions{}
|
|
|
|
cmd := &cobra.Command{
|
|
Use: "cluster [CLUSTER]",
|
|
Short: deleteClusterShort,
|
|
Long: deleteClusterLong,
|
|
Example: deleteClusterExample,
|
|
Args: rootCommand.clusterNameArgsNoKubeconfig(&options.ClusterName),
|
|
ValidArgsFunction: commandutils.CompleteClusterName(f, true, false),
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return RunDeleteCluster(context.TODO(), f, out, options)
|
|
},
|
|
}
|
|
|
|
cmd.Flags().BoolVarP(&options.Yes, "yes", "y", options.Yes, "Specify --yes to delete the cluster")
|
|
cmd.Flags().BoolVar(&options.Unregister, "unregister", options.Unregister, "Don't delete cloud resources, just unregister the cluster")
|
|
cmd.Flags().BoolVar(&options.External, "external", options.External, "Delete an external cluster")
|
|
|
|
cmd.Flags().StringVar(&options.Region, "region", options.Region, "External cluster's cloud region")
|
|
cmd.RegisterFlagCompletionFunc("region", completeRegion)
|
|
|
|
return cmd
|
|
}
|
|
|
|
func RunDeleteCluster(ctx context.Context, f *util.Factory, out io.Writer, options *DeleteClusterOptions) error {
|
|
clusterName := options.ClusterName
|
|
if clusterName == "" {
|
|
return fmt.Errorf("--name is required (for safety)")
|
|
}
|
|
|
|
var cloud fi.Cloud
|
|
var cluster *kopsapi.Cluster
|
|
var err error
|
|
|
|
if options.External {
|
|
region := options.Region
|
|
if region == "" {
|
|
return fmt.Errorf("--region is required (when --external)")
|
|
}
|
|
|
|
tags := map[string]string{"KubernetesCluster": clusterName}
|
|
cloud, err = awsup.NewAWSCloud(region, tags)
|
|
if err != nil {
|
|
return fmt.Errorf("error initializing AWS client: %v", err)
|
|
}
|
|
} else {
|
|
cluster, err = GetCluster(ctx, f, clusterName)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
wouldDeleteCloudResources := false
|
|
|
|
if !options.Unregister {
|
|
if cloud == nil {
|
|
cloud, err = cloudup.BuildCloud(cluster)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
allResources, err := resourceops.ListResources(cloud, cluster, options.Region)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
clusterResources := make(map[string]*resources.Resource)
|
|
for k, resource := range allResources {
|
|
if resource.Shared {
|
|
continue
|
|
}
|
|
clusterResources[k] = resource
|
|
}
|
|
|
|
if len(clusterResources) == 0 {
|
|
fmt.Fprintf(out, "No cloud resources to delete\n")
|
|
} else {
|
|
wouldDeleteCloudResources = true
|
|
|
|
t := &tables.Table{}
|
|
t.AddColumn("TYPE", func(r *resources.Resource) string {
|
|
return r.Type
|
|
})
|
|
t.AddColumn("ID", func(r *resources.Resource) string {
|
|
return r.ID
|
|
})
|
|
t.AddColumn("NAME", func(r *resources.Resource) string {
|
|
return r.Name
|
|
})
|
|
var l []*resources.Resource
|
|
for _, v := range clusterResources {
|
|
l = append(l, v)
|
|
}
|
|
|
|
err := t.Render(l, out, "TYPE", "NAME", "ID")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !options.Yes {
|
|
fmt.Fprintf(out, "\nMust specify --yes to delete cluster\n")
|
|
return nil
|
|
}
|
|
|
|
fmt.Fprintf(out, "\n")
|
|
|
|
err = resourceops.DeleteResources(cloud, clusterResources)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
if !options.External {
|
|
if !options.Yes {
|
|
if wouldDeleteCloudResources {
|
|
fmt.Fprintf(out, "\nMust specify --yes to delete cloud resources & unregister cluster\n")
|
|
} else {
|
|
fmt.Fprintf(out, "\nMust specify --yes to unregister the cluster\n")
|
|
}
|
|
return nil
|
|
}
|
|
clientset, err := f.KopsClient()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = clientset.DeleteCluster(ctx, cluster)
|
|
if err != nil {
|
|
return fmt.Errorf("error removing cluster from state store: %v", err)
|
|
}
|
|
}
|
|
|
|
b := kubeconfig.NewKubeconfigBuilder()
|
|
b.Context = clusterName
|
|
err = b.DeleteKubeConfig(clientcmd.NewDefaultPathOptions())
|
|
if err != nil {
|
|
klog.Warningf("error removing kube config: %v", err)
|
|
}
|
|
|
|
fmt.Fprintf(out, "\nDeleted cluster: %q\n", clusterName)
|
|
return nil
|
|
}
|
|
|
|
func completeRegion(cmd *cobra.Command, args []string, toComplete string) ([]string, cobra.ShellCompDirective) {
|
|
// TODO call into cloud provider(s) to get list of valid regions
|
|
return nil, cobra.ShellCompDirectiveNoFileComp
|
|
}
|