-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
2,992 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
package controllers | ||
|
||
import ( | ||
"context" | ||
|
||
apiProxy "github.com/ytsaurus/yt-k8s-operator/pkg/apiproxy" | ||
"github.com/ytsaurus/yt-k8s-operator/pkg/components" | ||
"github.com/ytsaurus/yt-k8s-operator/pkg/consts" | ||
"github.com/ytsaurus/yt-k8s-operator/pkg/ytconfig" | ||
) | ||
|
||
type component interface { | ||
Sync(ctx context.Context) error | ||
Status(ctx context.Context) (components.ComponentStatus, error) | ||
GetName() string | ||
GetType() consts.ComponentType | ||
} | ||
|
||
type masterComponent interface { | ||
component | ||
BuildInitial(ctx context.Context) error | ||
IsBuildInitially(ctx context.Context) (bool, error) | ||
NeedBuild(ctx context.Context) (bool, error) | ||
IsRebuildStarted() bool | ||
} | ||
|
||
type componentRegistry struct { | ||
comps map[string]component | ||
master masterComponent | ||
byType map[consts.ComponentType][]component | ||
} | ||
|
||
func (cr *componentRegistry) add(comp component) { | ||
cr.comps[comp.GetName()] = comp | ||
cr.byType[comp.GetType()] = append(cr.byType[comp.GetType()], comp) | ||
if comp.GetType() == consts.MasterType { | ||
cr.master = comp.(masterComponent) | ||
} | ||
} | ||
func (cr *componentRegistry) list() []component { | ||
var result []component | ||
for _, comp := range cr.comps { | ||
result = append(result, comp) | ||
} | ||
return result | ||
} | ||
func (cr *componentRegistry) listByType(types ...consts.ComponentType) []component { | ||
var result []component | ||
for _, compType := range types { | ||
result = append(result, cr.byType[compType]...) | ||
} | ||
return result | ||
} | ||
|
||
// TODO (l0kix2): cleanup New* for components since they not need deps anymore. | ||
func buildComponentRegistry( | ||
ytsaurus *apiProxy.Ytsaurus, | ||
) *componentRegistry { | ||
registry := &componentRegistry{ | ||
comps: make(map[string]component), | ||
byType: make(map[consts.ComponentType][]component), | ||
} | ||
|
||
resource := ytsaurus.GetResource() | ||
clusterDomain := getClusterDomain(ytsaurus.APIProxy().Client()) | ||
cfgen := ytconfig.NewGenerator(resource, clusterDomain) | ||
|
||
yc := components.NewYtsaurusClient(cfgen, ytsaurus, nil) | ||
registry.add(yc) | ||
|
||
d := components.NewDiscovery(cfgen, ytsaurus) | ||
registry.add(d) | ||
|
||
m := components.NewMaster(cfgen, ytsaurus, yc) | ||
registry.add(m) | ||
|
||
for _, hpSpec := range ytsaurus.GetResource().Spec.HTTPProxies { | ||
hp := components.NewHTTPProxy(cfgen, ytsaurus, nil, hpSpec) | ||
registry.add(hp) | ||
} | ||
|
||
nodeCfgGen := ytconfig.NewLocalNodeGenerator(ytsaurus.GetResource(), clusterDomain) | ||
if resource.Spec.DataNodes != nil && len(resource.Spec.DataNodes) > 0 { | ||
for _, dndSpec := range ytsaurus.GetResource().Spec.DataNodes { | ||
dnd := components.NewDataNode(nodeCfgGen, ytsaurus, nil, dndSpec) | ||
registry.add(dnd) | ||
} | ||
} | ||
|
||
if resource.Spec.UI != nil { | ||
ui := components.NewUI(cfgen, ytsaurus, nil) | ||
registry.add(ui) | ||
} | ||
|
||
if resource.Spec.RPCProxies != nil && len(resource.Spec.RPCProxies) > 0 { | ||
for _, rpSpec := range ytsaurus.GetResource().Spec.RPCProxies { | ||
rp := components.NewRPCProxy(cfgen, ytsaurus, nil, rpSpec) | ||
registry.add(rp) | ||
} | ||
} | ||
|
||
if resource.Spec.TCPProxies != nil && len(resource.Spec.TCPProxies) > 0 { | ||
for _, tpSpec := range ytsaurus.GetResource().Spec.TCPProxies { | ||
tp := components.NewTCPProxy(cfgen, ytsaurus, nil, tpSpec) | ||
registry.add(tp) | ||
} | ||
} | ||
|
||
if resource.Spec.ExecNodes != nil && len(resource.Spec.ExecNodes) > 0 { | ||
for _, endSpec := range ytsaurus.GetResource().Spec.ExecNodes { | ||
end := components.NewExecNode(nodeCfgGen, ytsaurus, nil, endSpec) | ||
registry.add(end) | ||
} | ||
} | ||
|
||
tndCount := 0 | ||
if resource.Spec.TabletNodes != nil && len(resource.Spec.TabletNodes) > 0 { | ||
for idx, tndSpec := range ytsaurus.GetResource().Spec.TabletNodes { | ||
tnd := components.NewTabletNode(nodeCfgGen, ytsaurus, yc, tndSpec, idx == 0) | ||
registry.add(tnd) | ||
tndCount++ | ||
} | ||
} | ||
if resource.Spec.Schedulers != nil { | ||
s := components.NewScheduler(cfgen, ytsaurus, nil, nil, nil) | ||
registry.add(s) | ||
} | ||
|
||
if resource.Spec.ControllerAgents != nil { | ||
ca := components.NewControllerAgent(cfgen, ytsaurus, nil) | ||
registry.add(ca) | ||
} | ||
|
||
var q component | ||
if resource.Spec.QueryTrackers != nil && resource.Spec.Schedulers != nil && resource.Spec.TabletNodes != nil && len(resource.Spec.TabletNodes) > 0 { | ||
q = components.NewQueryTracker(cfgen, ytsaurus, yc, nil) | ||
registry.add(q) | ||
} | ||
|
||
if resource.Spec.QueueAgents != nil && resource.Spec.TabletNodes != nil && len(resource.Spec.TabletNodes) > 0 { | ||
qa := components.NewQueueAgent(cfgen, ytsaurus, yc, nil, nil) | ||
registry.add(qa) | ||
} | ||
|
||
if resource.Spec.YQLAgents != nil { | ||
yqla := components.NewYQLAgent(cfgen, ytsaurus, nil) | ||
registry.add(yqla) | ||
} | ||
|
||
if (resource.Spec.DeprecatedChytController != nil || resource.Spec.StrawberryController != nil) && resource.Spec.Schedulers != nil { | ||
strawberry := components.NewStrawberryController(cfgen, ytsaurus, nil, nil, nil) | ||
registry.add(strawberry) | ||
} | ||
|
||
if resource.Spec.MasterCaches != nil { | ||
mc := components.NewMasterCache(cfgen, ytsaurus) | ||
registry.add(mc) | ||
} | ||
|
||
return registry | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.