-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implicitly track resources loaded in the resolver (#141)
We can implicitly track all resources loaded via .Get() in the resolver without exposing the reconciler-runtime config as part of the contract. This is done by wrapping the config object, intercepting the calls to .Get() and then delegating those calls to .TrackAndGet(). This wrapper is only applied within the controller as the tracks are not useful outside of that context. Signed-off-by: Scott Andrews <[email protected]>
- Loading branch information
Showing
5 changed files
with
75 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
Copyright 2022 The Kubernetes Authors. | ||
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 controllers | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/vmware-labs/reconciler-runtime/reconcilers" | ||
"sigs.k8s.io/controller-runtime/pkg/client" | ||
) | ||
|
||
func TrackingClient(config reconcilers.Config) client.Client { | ||
return &trackingClient{config} | ||
} | ||
|
||
type trackingClient struct { | ||
reconcilers.Config | ||
} | ||
|
||
func (c *trackingClient) Get(ctx context.Context, key client.ObjectKey, obj client.Object) error { | ||
return c.Config.TrackAndGet(ctx, key, obj) | ||
} |
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
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