This repository has been archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathclusterresource.go
108 lines (94 loc) · 3.63 KB
/
clusterresource.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
97
98
99
100
101
102
103
104
105
106
107
108
package entrypoints
import (
"context"
"github.com/lyft/flyteadmin/pkg/clusterresource"
executioncluster "github.com/lyft/flyteadmin/pkg/executioncluster/impl"
"github.com/lyft/flyteadmin/pkg/runtime"
"github.com/lyft/flytestdlib/logger"
_ "github.com/jinzhu/gorm/dialects/postgres" // Required to import database driver.
"github.com/lyft/flyteadmin/pkg/config"
"github.com/lyft/flyteadmin/pkg/repositories"
repositoryConfig "github.com/lyft/flyteadmin/pkg/repositories/config"
"github.com/lyft/flytestdlib/promutils"
"github.com/spf13/cobra"
)
var parentClusterResourceCmd = &cobra.Command{
Use: "clusterresource",
Short: "This command administers the ClusterResourceController. Please choose a subcommand.",
}
func GetLocalDbConfig() repositoryConfig.DbConfig {
return repositoryConfig.DbConfig{
Host: "localhost",
Port: 5432,
DbName: "postgres",
User: "postgres",
}
}
var controllerRunCmd = &cobra.Command{
Use: "run",
Short: "This command will start a cluster resource controller to periodically sync cluster resources",
Run: func(cmd *cobra.Command, args []string) {
ctx := context.Background()
configuration := runtime.NewConfigurationProvider()
scope := promutils.NewScope(configuration.ApplicationConfiguration().GetTopLevelConfig().MetricsScope).NewSubScope("clusterresource")
dbConfigValues := configuration.ApplicationConfiguration().GetDbConfig()
dbConfig := repositoryConfig.DbConfig{
Host: dbConfigValues.Host,
Port: dbConfigValues.Port,
DbName: dbConfigValues.DbName,
User: dbConfigValues.User,
Password: dbConfigValues.Password,
ExtraOptions: dbConfigValues.ExtraOptions,
}
db := repositories.GetRepository(
repositories.POSTGRES, dbConfig, scope.NewSubScope("database"))
cfg := config.GetConfig()
executionCluster := executioncluster.GetExecutionCluster(
scope.NewSubScope("cluster"),
cfg.KubeConfig,
cfg.Master,
configuration,
db)
clusterResourceController := clusterresource.NewClusterResourceController(db, executionCluster, scope)
clusterResourceController.Run()
logger.Infof(ctx, "ClusterResourceController started successfully")
},
}
var controllerSyncCmd = &cobra.Command{
Use: "sync",
Short: "This command will sync cluster resources",
Run: func(cmd *cobra.Command, args []string) {
ctx := context.Background()
configuration := runtime.NewConfigurationProvider()
scope := promutils.NewScope(configuration.ApplicationConfiguration().GetTopLevelConfig().MetricsScope).NewSubScope("clusterresource")
dbConfigValues := configuration.ApplicationConfiguration().GetDbConfig()
dbConfig := repositoryConfig.DbConfig{
Host: dbConfigValues.Host,
Port: dbConfigValues.Port,
DbName: dbConfigValues.DbName,
User: dbConfigValues.User,
Password: dbConfigValues.Password,
ExtraOptions: dbConfigValues.ExtraOptions,
}
db := repositories.GetRepository(
repositories.POSTGRES, dbConfig, scope.NewSubScope("database"))
cfg := config.GetConfig()
executionCluster := executioncluster.GetExecutionCluster(
scope.NewSubScope("cluster"),
cfg.KubeConfig,
cfg.Master,
configuration,
db)
clusterResourceController := clusterresource.NewClusterResourceController(db, executionCluster, scope)
err := clusterResourceController.Sync(ctx)
if err != nil {
logger.Fatalf(ctx, "Failed to sync cluster resources [%+v]", err)
}
logger.Infof(ctx, "ClusterResourceController started successfully")
},
}
func init() {
RootCmd.AddCommand(parentClusterResourceCmd)
parentClusterResourceCmd.AddCommand(controllerRunCmd)
parentClusterResourceCmd.AddCommand(controllerSyncCmd)
}