blob: 5cca212f5c99776a3981d377802c94458ebf97bc [file] [log] [blame]
Serge Bazanskibe538db2020-11-12 00:22:42 +01001// Copyright 2017 The kubecfg authors
2//
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16package cmd
17
18import (
19 "github.com/spf13/cobra"
20
21 "code.hackerspace.pl/hscloud/cluster/tools/kartongips/pkg/kubecfg"
22)
23
24const (
25 flagGracePeriod = "grace-period"
26)
27
28func init() {
29 RootCmd.AddCommand(deleteCmd)
30 deleteCmd.PersistentFlags().Int64(flagGracePeriod, -1, "Number of seconds given to resources to terminate gracefully. A negative value is ignored")
31}
32
33var deleteCmd = &cobra.Command{
34 Use: "delete",
35 Short: "Delete Kubernetes resources described in local config",
36 Args: cobra.ArbitraryArgs,
37 RunE: func(cmd *cobra.Command, args []string) error {
38 flags := cmd.Flags()
39 var err error
40
41 c := kubecfg.DeleteCmd{}
42
43 c.GracePeriod, err = flags.GetInt64(flagGracePeriod)
44 if err != nil {
45 return err
46 }
47
48 c.Client, c.Mapper, c.Discovery, err = getDynamicClients(cmd)
49 if err != nil {
50 return err
51 }
52
53 c.DefaultNamespace, err = defaultNamespace(clientConfig)
54 if err != nil {
55 return err
56 }
57
58 objs, err := readObjs(cmd, args)
59 if err != nil {
60 return err
61 }
62
63 return c.Run(cmd.Context(), objs)
64 },
65}