Skip to content

Commit 788e0d3

Browse files
committed
Rename WantToCreateResource() to ReadyToProcessResource() to reflect the fact that resources will not be created in case readOnly is set to true
1 parent e4cd30f commit 788e0d3

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

pkg/controller/instance/controller_reconcile.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@ func (igr *instanceGraphReconciler) reconcileResource(ctx context.Context, resou
142142
resourceState := &ResourceState{State: "IN_PROGRESS"}
143143
igr.state.ResourceStates[resourceID] = resourceState
144144

145-
// Check if resource should be created
146-
if want, err := igr.runtime.WantToCreateResource(resourceID); err != nil || !want {
145+
// Check if resource should be processed (create or get)
146+
if want, err := igr.runtime.ReadyToProcessResource(resourceID); err != nil || !want {
147147
log.V(1).Info("Skipping resource creation", "reason", err)
148148
resourceState.State = "SKIPPED"
149149
igr.runtime.IgnoreResource(resourceID)

pkg/runtime/interfaces.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ type Interface interface {
6161
// IsResourceReady returns true if the resource is ready, and false otherwise.
6262
IsResourceReady(resourceID string) (bool, string, error)
6363

64-
// WantToCreateResource returns true if all the condition expressions return true
64+
// ReadyToProcessResource returns true if all the condition expressions return true
6565
// if not it will add itself to the ignored resources
66-
WantToCreateResource(resourceID string) (bool, error)
66+
ReadyToProcessResource(resourceID string) (bool, error)
6767

6868
// IgnoreResource ignores resource that has a condition expressison that evaluated
6969
// to false

pkg/runtime/runtime.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -519,9 +519,9 @@ func (rt *ResourceGraphDefinitionRuntime) areDependenciesIgnored(resourceID stri
519519
return false
520520
}
521521

522-
// WantToCreateResource returns true if all the condition expressions return true
522+
// ReadyToProcessResource returns true if all the condition expressions return true
523523
// if not it will add itself to the ignored resources
524-
func (rt *ResourceGraphDefinitionRuntime) WantToCreateResource(resourceID string) (bool, error) {
524+
func (rt *ResourceGraphDefinitionRuntime) ReadyToProcessResource(resourceID string) (bool, error) {
525525
if rt.areDependenciesIgnored(resourceID) {
526526
return false, nil
527527
}

pkg/runtime/runtime_test.go

+11-7
Original file line numberDiff line numberDiff line change
@@ -2228,7 +2228,11 @@ func Test_IsResourceReady(t *testing.T) {
22282228
{
22292229
name: "multiple expressions all true",
22302230
resource: newTestResource(
2231-
withReadyExpressions([]string{"test.status.ready", "test.status.healthy && test.status.count > 10", "test.status.count > 5"}),
2231+
withReadyExpressions([]string{
2232+
"test.status.ready",
2233+
"test.status.healthy && test.status.count > 10",
2234+
"test.status.count > 5",
2235+
}),
22322236
),
22332237
resolvedObject: map[string]interface{}{
22342238
"status": map[string]interface{}{
@@ -2280,7 +2284,7 @@ func Test_IsResourceReady(t *testing.T) {
22802284
})
22812285
}
22822286
}
2283-
func Test_WantToCreateResource(t *testing.T) {
2287+
func Test_ReadyToProcessResource(t *testing.T) {
22842288
tests := []struct {
22852289
name string
22862290
resource Resource
@@ -2368,25 +2372,25 @@ func Test_WantToCreateResource(t *testing.T) {
23682372
},
23692373
}
23702374

2371-
got, err := rt.WantToCreateResource("test")
2375+
got, err := rt.ReadyToProcessResource("test")
23722376
if tt.wantErr {
23732377
if err == nil {
2374-
t.Error("WantToCreateResource() expected error, got none")
2378+
t.Error("ReadyToProcessResource() expected error, got none")
23752379
}
23762380
return
23772381
}
23782382
if tt.wantSkip {
23792383
if err == nil || !strings.Contains(err.Error(), "Skipping resource creation due to condition") {
2380-
t.Errorf("WantToCreateResource() expected skip message, got %v", err)
2384+
t.Errorf("ReadyToProcessResource() expected skip message, got %v", err)
23812385
}
23822386
return
23832387
}
23842388
if err != nil {
2385-
t.Errorf("WantToCreateResource() unexpected error = %v", err)
2389+
t.Errorf("ReadyToProcessResource() unexpected error = %v", err)
23862390
return
23872391
}
23882392
if got != tt.want {
2389-
t.Errorf("WantToCreateResource() = %v, want %v", got, tt.want)
2393+
t.Errorf("ReadyToProcessResource() = %v, want %v", got, tt.want)
23902394
}
23912395
})
23922396
}

0 commit comments

Comments
 (0)