You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The help will print out all targets with their descriptions organized bellow their categories. The categories are represented by `##@` and the target descriptions by `##`.
44
45
# The awk commands is responsible to read the entire set of makefiles included in this invocation, looking for lines of the file as xyz: ## something, and then pretty-format the target and help. Then, if there's a line with ##@ something, that gets pretty-printed as a category.
@@ -260,20 +260,20 @@ type ControllerNameConfiguration struct {
260
260
}
261
261
```
262
262
263
-
Usage of this custom `ComponentConfig` type would require then changing the `ctrl.NewFromComponentConfig()` to use the new struct vs the `DefaultControllerConfiguration`.
263
+
Usage of this custom `ComponentConfig` type would require then changing the `ctrl.NewFromComponentConfig()` to use the new struct vs the `DefaultControllerManagerConfiguration`.
264
264
265
265
## User Stories
266
266
267
267
### Controller Author with `controller-runtime` and default type
268
268
269
269
- Mount `ConfigMap`
270
-
- Initialize `ctrl.Manager` with `NewFromComponentConfig` with config name and `DefaultControllerConfiguration` type
270
+
- Initialize `ctrl.Manager` with `NewFromComponentConfig` with config name and `DefaultControllerManagerConfiguration` type
271
271
- Build custom controller as usual
272
272
273
273
### Controller Author with `controller-runtime` and custom type
274
274
275
275
- Implement `ComponentConfig` type
276
-
- Embed `ControllerConfiguration` type
276
+
- Embed `ControllerManagerConfiguration` type
277
277
- Mount `ConfigMap`
278
278
- Initialize `ctrl.Manager` with `NewFromComponentConfig` with config name and `ComponentConfig` type
279
279
- Build custom controller as usual
@@ -311,9 +311,9 @@ _Provided that the controller provides manifests_
311
311
312
312
-[x] 02/19/2020: Proposed idea in an issue or [community meeting]
313
313
-[x] 02/24/2020: Proposal submitted to `controller-runtime`
314
-
-[x] 03/02/2020: Updated with default `DefaultControllerConfiguration`
314
+
-[x] 03/02/2020: Updated with default `DefaultControllerManagerConfiguration`
315
315
-[x] 03/04/2020: Updated with embeddable `RuntimeConfig`
316
-
-[x] 03/10/2020: Updated embeddable name to `ControllerConfiguration`
316
+
-[x] 03/10/2020: Updated embeddable name to `ControllerManagerConfiguration`
0 commit comments