Files
paralus/pkg/reconcile/cluster_reconciler.go

279 lines
7.7 KiB
Go

package reconcile
import (
"context"
"fmt"
"time"
clstrutil "github.com/paralus/paralus/internal/cluster"
"github.com/paralus/paralus/internal/cluster/constants"
"github.com/paralus/paralus/pkg/query"
"github.com/paralus/paralus/pkg/sentry/cryptoutil"
"github.com/paralus/paralus/pkg/sentry/kubeconfig"
sentryutil "github.com/paralus/paralus/pkg/sentry/util"
"github.com/paralus/paralus/pkg/service"
sentryrpc "github.com/paralus/paralus/proto/rpc/sentry"
ctypesv3 "github.com/paralus/paralus/proto/types/commonpb/v3"
infrav3 "github.com/paralus/paralus/proto/types/infrapb/v3"
"github.com/paralus/paralus/proto/types/sentry"
"github.com/pkg/errors"
"github.com/uptrace/bun"
)
const (
clusterCoolDown = time.Minute
)
// ClusterReconciler reconciles cluster state
type ClusterReconciler interface {
Reconcile(ctx context.Context, cluster *infrav3.Cluster) error
}
type clusterReconciler struct {
cs service.ClusterService
db *bun.DB
bs service.BootstrapService
pf cryptoutil.PasswordFunc
}
// NewClusterReconciler returns new cluster reconciler
func NewClusterReconciler(cs service.ClusterService, db *bun.DB, bs service.BootstrapService, pf cryptoutil.PasswordFunc) ClusterReconciler {
return &clusterReconciler{cs: cs, db: db, bs: bs, pf: pf}
}
func (r *clusterReconciler) Reconcile(ctx context.Context, cluster *infrav3.Cluster) error {
switch {
case canReconcileClusterDelete(cluster):
return r.handleClusterDelete(ctx, cluster)
case canReconcileClusterBootstrapAgent(cluster):
return r.handleClusterBootstrapAgent(ctx, cluster)
default:
return nil
}
}
func canReconcileClusterDelete(c *infrav3.Cluster) bool {
switch {
case clstrutil.IsClusterDeletePending(c):
return true
case clstrutil.IsClusterDeleteRetry(c) && clstrutil.IsClusterDeleteCooledDown(c, clusterCoolDown):
return true
default:
return false
}
}
func canReconcileClusterBootstrapAgent(c *infrav3.Cluster) bool {
switch {
case clstrutil.IsClusterBootstrapAgentPending(c):
return true
case clstrutil.IsClusterBootstrapAgentRetry(c) && clstrutil.IsClusterBootstrapAgentCooledDown(c, clusterCoolDown):
return true
default:
return false
}
}
// DeleteForCluster delete bootstrap agent
func (r *clusterReconciler) deleteBootstrapAgentForCluster(ctx context.Context, cluster *infrav3.Cluster) error {
resp, err := r.bs.SelectBootstrapAgentTemplates(ctx, query.WithOptions(&ctypesv3.QueryOptions{
GlobalScope: true,
Selector: "paralus.dev/defaultRelay=true",
}))
if err != nil {
return err
}
for _, bat := range resp.Items {
agent := &sentry.BootstrapAgent{
Metadata: &ctypesv3.Metadata{
Id: cluster.Metadata.Id,
Name: cluster.Metadata.Name,
Partner: cluster.Metadata.Partner,
Organization: cluster.Metadata.Organization,
Project: cluster.Metadata.Project,
},
Spec: &sentry.BootstrapAgentSpec{
TemplateRef: fmt.Sprintf("template/%s", bat.Metadata.Name),
},
}
templateRef, err := sentryutil.GetTemplateScope(agent.Spec.TemplateRef)
if err != nil {
return err
}
err = r.bs.DeleteBootstrapAgent(ctx, templateRef, query.WithMeta(agent.Metadata))
if err != nil {
return err
}
}
return nil
}
func (r *clusterReconciler) handleClusterDelete(ctx context.Context, cluster *infrav3.Cluster) error {
_log.Infow("handling cluster delete", "cluster.Name", cluster.Metadata.Name)
try := func() error {
_log.Debugw("no relay networks to disassociate", "cluster name", cluster.Metadata.Name)
sd, ok := service.GetSessionDataFromContext(ctx)
if !ok {
return errors.New("failed to get session data")
}
in := &sentryrpc.GetForClusterRequest{
Namespace: "paralus-system",
SystemUser: false,
Opts: &ctypesv3.QueryOptions{
Name: cluster.Metadata.Name,
ClusterID: cluster.Metadata.Id,
Organization: cluster.Metadata.Organization,
Partner: cluster.Metadata.Partner,
Username: sd.Username,
Account: sd.Account,
},
}
kss := service.NewKubeconfigSettingService(r.db)
config, err := kubeconfig.GetConfigForCluster(ctx, r.bs, in, r.pf, kss, kubeconfig.ParalusSystem)
if err != nil {
return err
}
status := service.DeleteRelayAgent(ctx, config, "paralus-system")
_log.Infof("deleted relay agent in cluster with status: ", fmt.Sprint(status))
return nil
}
onSuccess := func() error {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*10)
defer cancel()
err := r.deleteBootstrapAgentForCluster(ctx, cluster)
if err != nil {
return err
}
_log.Info("deleted bootstrap agent for cluster")
err = r.cs.UpdateStatus(ctx, &infrav3.Cluster{
Metadata: cluster.Metadata,
Spec: &infrav3.ClusterSpec{
ClusterData: &infrav3.ClusterData{
ClusterStatus: &infrav3.ClusterStatus{
Conditions: []*infrav3.ClusterCondition{
clstrutil.NewClusterDelete(constants.Success, "cluster deleted")},
},
},
},
}, query.WithMeta(cluster.Metadata))
return err
}
onFailure := func(reason string) error {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*10)
defer cancel()
err := r.cs.UpdateStatus(ctx, &infrav3.Cluster{
Metadata: cluster.Metadata,
Spec: &infrav3.ClusterSpec{
ClusterData: &infrav3.ClusterData{
ClusterStatus: &infrav3.ClusterStatus{
Conditions: []*infrav3.ClusterCondition{
clstrutil.NewClusterDelete(constants.Retry, reason)},
},
},
},
}, query.WithMeta(cluster.Metadata))
return err
}
if err := try(); err != nil {
_log.Infow("unable to delete cluster", "name", cluster.Metadata.Name, "error", err)
err = errors.Wrap(err, "unable to delete cluster")
sErr := onFailure(err.Error())
if sErr != nil {
_log.Infow("unable to update status", "error", err)
}
return err
}
if err := onSuccess(); err != nil {
_log.Infow("unable to update status", "error", err)
}
return nil
}
func (r *clusterReconciler) handleClusterBootstrapAgent(ctx context.Context, cluster *infrav3.Cluster) error {
_log.Infow("handling cluster bootstrap agent", "cluster", cluster.Metadata)
try := func() error {
err := r.cs.CreateBootstrapAgentForCluster(ctx, cluster)
return err
}
onSuccess := func() error {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*10)
defer cancel()
_log.Info("annotations in reconciler :: ", cluster.Metadata.Annotations)
err := r.cs.UpdateStatus(ctx, &infrav3.Cluster{
Metadata: cluster.Metadata,
Spec: &infrav3.ClusterSpec{
ClusterData: &infrav3.ClusterData{
ClusterStatus: &infrav3.ClusterStatus{
Conditions: []*infrav3.ClusterCondition{
clstrutil.NewClusterBootstrapAgent(constants.Success, "bootstrap agent created")},
},
},
},
}, query.WithMeta(cluster.Metadata))
//update relays to annotations
if err == nil {
err = r.cs.UpdateClusterAnnotations(ctx, cluster)
}
return err
}
onFailure := func(reason string) error {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*10)
defer cancel()
err := r.cs.UpdateStatus(ctx, &infrav3.Cluster{
Metadata: cluster.Metadata,
Spec: &infrav3.ClusterSpec{
ClusterData: &infrav3.ClusterData{
ClusterStatus: &infrav3.ClusterStatus{
Conditions: []*infrav3.ClusterCondition{
clstrutil.NewClusterBootstrapAgent(constants.Retry, reason)},
},
},
},
}, query.WithMeta(cluster.Metadata))
return err
}
if err := try(); err != nil {
_log.Infow("unable to create cluster bootstrap agent", "error", err)
err = errors.Wrap(err, "unable to create cluster boostrap agent")
sErr := onFailure(err.Error())
if sErr != nil {
_log.Infow("unable to update status", "error", err)
}
return err
}
if err := onSuccess(); err != nil {
_log.Infow("unable to update status", "error", err)
}
return nil
}