-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_controller.go
More file actions
153 lines (120 loc) · 4.46 KB
/
Copy pathsample_controller.go
File metadata and controls
153 lines (120 loc) · 4.46 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
Copyright 2025.
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"
"k8s.io/utils/clock"
"github.com/cbalan/go-stepflow"
"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
logf "sigs.k8s.io/controller-runtime/pkg/log"
samplev1alpha1 "github.com/cbalan/go-stepflow-examples/kubernetes-controller/api/v1alpha1"
samplestepflow "github.com/cbalan/go-stepflow-examples/kubernetes-controller/internal/stepflow/sample"
)
// SampleReconciler reconciles a Sample object
type SampleReconciler struct {
client.Client
Scheme *runtime.Scheme
Clock clock.Clock
stepflow stepflow.StepFlow
}
// +kubebuilder:rbac:groups=sample.stepflow,resources=samples,verbs=get;list;watch;create;update;patch;delete
// +kubebuilder:rbac:groups=sample.stepflow,resources=samples/status,verbs=get;update;patch
// +kubebuilder:rbac:groups=sample.stepflow,resources=samples/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.
// For more details, check Reconcile and its Result here:
// - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.21.0/pkg/reconcile
func (r *SampleReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
log := logf.FromContext(ctx)
log.Info("Reconciling sample")
// Load sample resource.
sample := &samplev1alpha1.Sample{}
if err := r.Get(ctx, req.NamespacedName, sample); err != nil {
return ctrl.Result{}, client.IgnoreNotFound(err)
}
// No action required for completed resources.
if meta.IsStatusConditionTrue(sample.Status.Conditions, samplev1alpha1.CompletedCondition) {
return ctrl.Result{}, nil
}
// Create sample exchange.
ex := samplestepflow.NewExchange(r.Clock, sample)
// Apply sample stepflow against the old state and exchange.
var errApply error
sample.Status.State, errApply = r.stepflow.Apply(samplestepflow.WithExchange(ctx, ex), sample.Status.State)
// On error, complete the sample resource with error.
if errApply != nil {
meta.SetStatusCondition(&sample.Status.Conditions, metav1.Condition{
Type: samplev1alpha1.CompletedCondition,
Status: metav1.ConditionTrue,
Reason: samplev1alpha1.ErrorReason,
Message: errApply.Error(),
})
log.Error(errApply, "Failed to apply sample stepflow")
return ctrl.Result{}, r.Status().Update(ctx, sample)
}
// If completed, complete the sample resource with success.
if r.stepflow.IsCompleted(sample.Status.State) {
meta.SetStatusCondition(&sample.Status.Conditions, metav1.Condition{
Type: samplev1alpha1.CompletedCondition,
Status: metav1.ConditionTrue,
Reason: samplev1alpha1.SuccessReason,
Message: "Sample stepflow completed successfully",
})
log.Info("Completed sample stepflow")
return ctrl.Result{}, r.Status().Update(ctx, sample)
}
// Default reconcile result.
reconcileResult := ctrl.Result{RequeueAfter: 500 * time.Millisecond}
// Apply exchange requeue hint, if set.
if ex.Result.RequeueAfter > 0 {
reconcileResult.RequeueAfter = ex.Result.RequeueAfter
}
return reconcileResult, r.Status().Update(ctx, sample)
}
// SetupStepFlow sets up the controller sample stepflow.
func (r *SampleReconciler) SetupStepFlow() error {
if r.stepflow != nil {
return nil
}
flow, err := samplestepflow.NewStepFlow()
if err != nil {
return err
}
r.stepflow = flow
return nil
}
func (r *SampleReconciler) SetupClock() error {
if r.Clock != nil {
return nil
}
r.Clock = clock.RealClock{}
return nil
}
// SetupWithManager sets up the controller with the Manager.
func (r *SampleReconciler) SetupWithManager(mgr ctrl.Manager) error {
if err := r.SetupClock(); err != nil {
return err
}
if err := r.SetupStepFlow(); err != nil {
return err
}
return ctrl.NewControllerManagedBy(mgr).
For(&samplev1alpha1.Sample{}).
Named("sample").
Complete(r)
}