forked from gardener/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
96 lines (85 loc) · 2.8 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Copyright 2019 Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, v. 2 except as noted otherwise in the LICENSE file.
//
// 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 (
"fmt"
"github.com/gardener/test-infra/cmd/hostscheduler/completion"
"github.com/gardener/test-infra/pkg/hostscheduler"
"github.com/gardener/test-infra/pkg/hostscheduler/gardenerscheduler"
"github.com/gardener/test-infra/pkg/hostscheduler/gkescheduler"
"github.com/gardener/test-infra/pkg/logger"
vh "github.com/gardener/test-infra/pkg/util/cmdutil/viper"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"os"
)
var (
registration *hostscheduler.Registrations
)
var hostschedulerCmd = &cobra.Command{
Use: "hostscheduler",
Aliases: []string{"hs"},
Short: "Manage gardener host cluster for gardener tests",
PersistentPreRun: func(cmd *cobra.Command, args []string) {
vh.ViperHelper.ApplyConfig()
log, err := logger.NewCliLogger()
if err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
logger.SetLogger(log)
},
}
// helpCmd represents the completion command
var helpCmd = &cobra.Command{
Use: "config-help",
Short: "Prints the configuration help",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println(vh.ViperHelper.Usage())
},
}
func init() {
viperHelper := vh.NewViperHelper(nil, "hostscheduler", "$HOME/.tm", ".")
vh.SetViper(viperHelper)
cobra.OnInitialize(initConfig)
logger.InitFlags(hostschedulerCmd.PersistentFlags())
completion.RegisterCmd(hostschedulerCmd)
hostschedulerCmd.AddCommand(helpCmd)
// register hostscheduler provider
registration = &hostscheduler.Registrations{}
gkescheduler.Register(registration)
gardenerscheduler.Register(registration)
if err := registration.Apply(hostschedulerCmd); err != nil {
fmt.Println(err.Error())
os.Exit(1)
}
hostschedulerCmd.Commands()
viperHelper.BindPFlags(hostschedulerCmd.PersistentFlags(), "")
}
func initConfig() {
err := vh.ViperHelper.ReadInConfig()
if err != nil {
if _, ok := err.(viper.ConfigFileNotFoundError); ok {
return
}
fmt.Printf("Cannot read config file from %s: %v \n", viper.ConfigFileUsed(), err)
os.Exit(1)
}
}
func main() {
if err := hostschedulerCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}