-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #293 from negz/coopt
Add a `controller.Options` type
- Loading branch information
Showing
4 changed files
with
216 additions
and
8 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,68 @@ | ||
/* | ||
Copyright 2021 The Crossplane 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 controller | ||
|
||
import ( | ||
"time" | ||
|
||
"k8s.io/client-go/util/workqueue" | ||
"sigs.k8s.io/controller-runtime/pkg/controller" | ||
|
||
"github.com/crossplane/crossplane-runtime/pkg/feature" | ||
"github.com/crossplane/crossplane-runtime/pkg/logging" | ||
"github.com/crossplane/crossplane-runtime/pkg/ratelimiter" | ||
) | ||
|
||
// DefaultOptions returns a functional set of options with conservative | ||
// defaults. | ||
func DefaultOptions() Options { | ||
return Options{ | ||
Logger: logging.NewNopLogger(), | ||
GlobalRateLimiter: ratelimiter.NewGlobal(ratelimiter.DefaultGlobalRPS), | ||
PollInterval: 1 * time.Minute, | ||
MaxConcurrentReconciles: 1, | ||
Features: &feature.Flags{}, | ||
} | ||
} | ||
|
||
// Options frequently used by most Crossplane controllers. | ||
type Options struct { | ||
// The Logger controllers should use. | ||
Logger logging.Logger | ||
|
||
// The GlobalRateLimiter used by this controller manager. The rate of | ||
// reconciles across all controllers will be subject to this limit. | ||
GlobalRateLimiter workqueue.RateLimiter | ||
|
||
// PollInterval at which each controller should speculatively poll to | ||
// determine whether it has work to do. | ||
PollInterval time.Duration | ||
|
||
// MaxConcurrentReconciles for each controller. | ||
MaxConcurrentReconciles int | ||
|
||
// Features that should be enabled. | ||
Features *feature.Flags | ||
} | ||
|
||
// ForControllerRuntime extracts options for controller-runtime. | ||
func (o Options) ForControllerRuntime() controller.Options { | ||
return controller.Options{ | ||
MaxConcurrentReconciles: o.MaxConcurrentReconciles, | ||
RateLimiter: ratelimiter.NewController(o.GlobalRateLimiter), | ||
} | ||
} |
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,51 @@ | ||
/* | ||
Copyright 2021 The Crossplane 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 feature contains utilities for managing Crossplane features. | ||
package feature | ||
|
||
import ( | ||
"sync" | ||
) | ||
|
||
// A Flag enables a particular feature. | ||
type Flag string | ||
|
||
// Flags that are enabled. The zero value - i.e. &feature.Flags{} - is usable. | ||
type Flags struct { | ||
m sync.RWMutex | ||
enabled map[Flag]bool | ||
} | ||
|
||
// Enable a feature flag. | ||
func (fs *Flags) Enable(f Flag) { | ||
fs.m.Lock() | ||
if fs.enabled == nil { | ||
fs.enabled = make(map[Flag]bool) | ||
} | ||
fs.enabled[f] = true | ||
fs.m.Unlock() | ||
} | ||
|
||
// Enabled returns true if the supplied feature flag is enabled. | ||
func (fs *Flags) Enabled(f Flag) bool { | ||
if fs == nil { | ||
return false | ||
} | ||
fs.m.RLock() | ||
defer fs.m.RUnlock() | ||
return fs.enabled[f] | ||
} |
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,61 @@ | ||
/* | ||
Copyright 2021 The Crossplane 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 feature | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/google/go-cmp/cmp" | ||
) | ||
|
||
func TestEnable(t *testing.T) { | ||
var cool Flag = "cool" | ||
|
||
t.Run("EnableMutatesZeroValue", func(t *testing.T) { | ||
f := &Flags{} | ||
f.Enable(cool) | ||
|
||
want := true | ||
got := f.Enabled(cool) | ||
|
||
if diff := cmp.Diff(want, got); diff != "" { | ||
t.Errorf("f.Enabled(...): -want, +got:\n%s", diff) | ||
} | ||
}) | ||
|
||
t.Run("EnabledOnEmptyFlagsReturnsFalse", func(t *testing.T) { | ||
f := &Flags{} | ||
|
||
want := false | ||
got := f.Enabled(cool) | ||
|
||
if diff := cmp.Diff(want, got); diff != "" { | ||
t.Errorf("f.Enabled(...): -want, +got:\n%s", diff) | ||
} | ||
}) | ||
|
||
t.Run("EnabledOnNilReturnsFalse", func(t *testing.T) { | ||
var f *Flags | ||
|
||
want := false | ||
got := f.Enabled(cool) | ||
|
||
if diff := cmp.Diff(want, got); diff != "" { | ||
t.Errorf("f.Enabled(...): -want, +got:\n%s", diff) | ||
} | ||
}) | ||
} |
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