-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsubtreevalidator_controller.go
More file actions
137 lines (118 loc) · 5.04 KB
/
subtreevalidator_controller.go
File metadata and controls
137 lines (118 loc) · 5.04 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
Copyright 2024.
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 controller
import (
"context"
"time"
"github.com/go-logr/logr"
appsv1 "k8s.io/api/apps/v1"
corev1 "k8s.io/api/core/v1"
apimeta "k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/predicate"
"k8s.io/apimachinery/pkg/runtime"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/log"
teranodev1alpha1 "github.com/bsv-blockchain/teranode-operator/api/v1alpha1"
"github.com/bsv-blockchain/teranode-operator/internal/utils"
)
// SubtreeValidatorReconciler reconciles a SubtreeValidator object
type SubtreeValidatorReconciler struct {
client.Client
Scheme *runtime.Scheme
Log logr.Logger
NamespacedName types.NamespacedName
//nolint:containedctx // Required for reconciler pattern
Context context.Context
}
//+kubebuilder:rbac:groups=teranode.bsvblockchain.org,resources=subtreevalidators,verbs=get;list;watch;create;update;patch;delete
//+kubebuilder:rbac:groups=teranode.bsvblockchain.org,resources=subtreevalidators/status,verbs=get;update;patch
//+kubebuilder:rbac:groups=teranode.bsvblockchain.org,resources=subtreevalidators/finalizers,verbs=update
// Reconcile is part of the main kubernetes reconciliation loop which aims to
// move the current state of the cluster closer to the desired state.
// TODO(user): Modify the Reconcile function to compare the state specified by
// the SubtreeValidator object against the actual cluster state, and then
// perform operations to make the cluster state reflect the state specified by
// the user.
//
// For more details, check Reconcile and its Result here:
// - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.16.3/pkg/reconcile
func (r *SubtreeValidatorReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
result := ctrl.Result{}
r.Log = log.FromContext(ctx).WithValues("subtree-validator", req.NamespacedName)
r.Context = ctx
r.NamespacedName = req.NamespacedName
subtreeValidator := teranodev1alpha1.SubtreeValidator{}
if err := r.Get(ctx, req.NamespacedName, &subtreeValidator); err != nil {
r.Log.Error(err, "unable to fetch asset CR")
return result, nil
}
_, err := utils.ReconcileBatch(r.Log,
r.ReconcileDeployment,
r.ReconcileService,
)
// Update scale status (replicas and selector) from deployment
deployment := &appsv1.Deployment{}
if getErr := r.Get(ctx, types.NamespacedName{
Name: SubtreeValidatorDeploymentName,
Namespace: req.Namespace,
}, deployment); getErr == nil {
replicas, selector := utils.GetScaleStatusFromDeployment(deployment)
subtreeValidator.Status.Replicas = replicas
subtreeValidator.Status.Selector = selector
}
if err != nil {
apimeta.SetStatusCondition(&subtreeValidator.Status.Conditions,
metav1.Condition{
Type: teranodev1alpha1.ConditionReconciled,
Status: metav1.ConditionFalse,
Reason: teranodev1alpha1.ReconciledReasonError,
Message: err.Error(),
},
)
_ = r.Client.Status().Update(ctx, &subtreeValidator)
// Since error is written on the status, let's log it and requeue
// Returning error here is redundant
r.Log.Error(err, "requeuing object for reconciliation")
return ctrl.Result{Requeue: true, RequeueAfter: time.Second}, nil
} else {
apimeta.SetStatusCondition(&subtreeValidator.Status.Conditions,
metav1.Condition{
Type: teranodev1alpha1.ConditionReconciled,
Status: metav1.ConditionTrue,
Reason: teranodev1alpha1.ReconciledReasonComplete,
Message: teranodev1alpha1.ReconcileCompleteMessage,
},
)
}
err = r.Client.Status().Update(ctx, &subtreeValidator)
if subtreeValidator.Spec.DeploymentOverrides != nil && subtreeValidator.Spec.DeploymentOverrides.Replicas != nil {
if subtreeValidator.Status.Replicas != *subtreeValidator.Spec.DeploymentOverrides.Replicas {
r.Log.Info("requeuing to monitor replica status", "status", subtreeValidator.Status.Replicas, "spec", subtreeValidator.Spec.DeploymentOverrides.Replicas)
return ctrl.Result{RequeueAfter: time.Second}, nil
}
}
return ctrl.Result{Requeue: false, RequeueAfter: 0}, err
}
// SetupWithManager sets up the controller with the Manager.
func (r *SubtreeValidatorReconciler) SetupWithManager(mgr ctrl.Manager) error {
return ctrl.NewControllerManagedBy(mgr).
For(&teranodev1alpha1.SubtreeValidator{}).
Owns(&appsv1.Deployment{}).
Owns(&corev1.Service{}).
Owns(&corev1.PersistentVolumeClaim{}).
WithEventFilter(predicate.GenerationChangedPredicate{}).
Complete(r)
}