Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RFC: Deprecation and removal of ComponentConfig #895

Open
christopherhein opened this issue Apr 11, 2020 · 24 comments
Open

RFC: Deprecation and removal of ComponentConfig #895

christopherhein opened this issue Apr 11, 2020 · 24 comments
Labels
lifecycle/frozen Indicates that an issue or PR should not be auto-closed due to staleness. priority/important-longterm Important over the long term, but may not be staffed and/or may need multiple releases to complete.
Milestone

Comments

@christopherhein
Copy link
Member

christopherhein commented Apr 11, 2020

This issue tracks the deprecation and removal of ComponentConfig from Controller Runtime.

@fejta-bot
Copy link

Issues go stale after 90d of inactivity.
Mark the issue as fresh with /remove-lifecycle stale.
Stale issues rot after an additional 30d of inactivity and eventually close.

If this issue is safe to close now please do so with /close.

Send feedback to sig-testing, kubernetes/test-infra and/or fejta.
/lifecycle stale

@k8s-ci-robot k8s-ci-robot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Jul 20, 2020
@vincepri
Copy link
Member

/lifecycle frozen
/milestone v0.7.x

@christopherhein Let me know if this should fall into 0.7, or we can wait for later as well

@k8s-ci-robot k8s-ci-robot removed the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Jul 22, 2020
@k8s-ci-robot k8s-ci-robot added this to the v0.7.x milestone Jul 22, 2020
@k8s-ci-robot k8s-ci-robot added the lifecycle/frozen Indicates that an issue or PR should not be auto-closed due to staleness. label Jul 22, 2020
@vincepri
Copy link
Member

/priority important-longterm

@k8s-ci-robot k8s-ci-robot added the priority/important-longterm Important over the long term, but may not be staffed and/or may need multiple releases to complete. label Jul 22, 2020
@christopherhein
Copy link
Member Author

christopherhein commented Jul 22, 2020

What is the v0.7 timeframe?

I'm working on updating the PR this week and will likely have something Friday or early next week… at least for #891

@vincepri
Copy link
Member

1-2 months, probably, it all depends when 1.19 is release and when the current planned breaking changes will merge

@christopherhein
Copy link
Member Author

Perfect, let's aim for that milestone since as we've discussed this will also have breaking changes. Thanks!

@christopherhein
Copy link
Member Author

christopherhein commented Oct 1, 2020

@vincepri I think we need to remove this tracking issue from the v0.7 milestone. For now, we should just have #891 give this is tracking the entire feature through alpha -> beta -> ga we'll want the api to bake a bit.

@christopherhein
Copy link
Member Author

@DirectXMan12 @vincepri looking into at the next phases of this…

I'd originally documented moving to use configv1alpha1.ClientConnectionConfiguration - https://github.com/kubernetes/component-base/blob/master/config/v1alpha1/types.go#L69 as a standard type that we could configure rest.Config with. Looking into how this is implemented in manager.New() it takes in the *rest.Config, Options{} as parameters meaning if we included the fields from configv1alpha1.ClientConnectionConfiguration and supported nil values for rest.Config without erroring (https://github.com/kubernetes-sigs/controller-runtime/blob/master/pkg/manager/manager.go#L306-L308) we could configure the *rest.Config with the values from the file as long as those same fields were defined on the Options struct…

For reference:

type ClientConnectionConfiguration struct {
	// kubeconfig is the path to a KubeConfig file.
	Kubeconfig string `json:"kubeconfig"`
	// acceptContentTypes defines the Accept header sent by clients when connecting to a server, overriding the
	// default value of 'application/json'. This field will control all connections to the server used by a particular
	// client.
	AcceptContentTypes string `json:"acceptContentTypes"`
	// contentType is the content type used when sending data to the server from this client.
	ContentType string `json:"contentType"`
	// qps controls the number of queries per second allowed for this connection.
	QPS float32 `json:"qps"`
	// burst allows extra queries to accumulate when a client is exceeding its rate.
	Burst int32 `json:"burst"`
}

The ux would end up being something like:

mgr, err := ctrl.NewManager(nil, ctrl.Options{Scheme: scheme}.AndFromOrDie(cfg.File()))
// handle error

Expecting that Options an/or the ComponentConfig type set the same defaults we have defined in https://github.com/kubernetes-sigs/controller-runtime/blob/master/pkg/client/config/config.go#L85-L88

What do you think? Do you think this is/would be useful?

@errordeveloper
Copy link

Just notice there hasn't been much activity and recent deprecations add a bit of confusion (#2165 (comment)).

@christopherhein @vincepri is this issue still relevant?

@vincepri
Copy link
Member

vincepri commented Feb 8, 2023

@errordeveloper Probably not, x-posting from the deprecation PR #2165 (comment)

The codebase around configuration package is missing maintainers and the general integration between the configuration types and the manager options or controllers can be very confusing to use.

There is currently no alternative implementation, folks could use their own json/yaml unmarshalling and configure manager options that way.

Happy to revisit if we have folks stepping up to review, cleanup, support, and maintain the codebase.

@vincepri
Copy link
Member

/retitle RFC: Deprecation and removal of ComponentConfig

@k8s-ci-robot k8s-ci-robot changed the title Tracking ComponentConfig Implementation RFC: Deprecation and removal of ComponentConfig Feb 15, 2023
@errordeveloper
Copy link

/retitle RFC: Deprecation and removal of ComponentConfig

I'm afraid, but I have to say that it is now exteremely confusing to anyone reading this issue.

@terinjokes
Copy link
Contributor

terinjokes commented Mar 14, 2023

This is a bit annoying, as we had just finished migrating to these types, as they were what all the examples were showing We were following the "custom" example to embed ComponentConfig into our configuration, and using the file loader to load both our application configuration and to configure controller-runtime in one go.

We run about a dozen different controllers and having a consistent way to configure controller-runtime, for internally-developed controllers, as well as integrating open source ones, is extremely attractive for our operations. Now I have egg on my face to all my colleagues (and open source projects) because this was in no way well communicated as being removed on such short notice.

@errordeveloper
Copy link

errordeveloper commented Mar 14, 2023

@terinjokes I have also ended up doing that too, I think it should be actually fairly easy to either just move this code as is into another repo or create a minimalist config loader. Let me know if you want to work together on some kind of solution to this deprecation problem.

I find the current API a bit of an overkill for such a small task.

loader := ctrl.ConfigFile().AtPath(configFile).OfKind(config)
options, err := options.AndFrom(loader)

It could be replaced with something simpler. But it's not like it bothers me really, it's just that while figuring out how to use it I had to read what all these fancy functions do, and I wished it was just one simple struct and a loader method instead.

@terinjokes
Copy link
Contributor

I can agree the file loader was a bit strange at first, and would be okay with improvements there. The real win is retaining a consistent way to configure controller-runtime across projects.

@errordeveloper
Copy link

Hi @vincepri, I think it would be plausible. Is there a graduation issue? Just wondering what it might entail to take this code out of alpha.

@vincepri
Copy link
Member

There is no graduation issue at the moment, which was part of the problem; if folks would like to make a plan it would be great to update the proposal and discuss async

@kzap
Copy link

kzap commented Jul 5, 2023

Is there any recommended migration paths or examples? I am currently following what this PR from wg-batch has done

@terinjokes
Copy link
Contributor

@vincepri What is the process for such a proposal here?

@terinjokes
Copy link
Contributor

@vincepri I still would like to get config loading back into controller runtime. How could I begin working on a proposal?

@vincepri
Copy link
Member

There is a need to push the original proposal further, and have folks be listed as maintainers long term. What in general hasn't worked well is large features without a clear maintainer, and where the current set of maintainers don't have bandwidth to carry.

What also would be ideal is that we restructure the codebase to have the component config as an optional pattern that lives outside the manager altogether.

@terinjokes
Copy link
Contributor

There is a need to push the original proposal further, and have folks be listed as maintainers long term.

Was there an original proposal document? Or do you mean the alpha that got implemented? I haven’t seen the former, if it exists.

What also would be ideal is that we restructure the codebase to have the component config as an optional pattern that lives outside the manager altogether.

I can see this working fairly well, as a lot of this configuration is also exposed as part of the manager’s options. Especially with the improvements we’ve seen with those options in the last two releases.

@criscola
Copy link

criscola commented Mar 4, 2024

Q: The old ComponentConfig was convenient for operator developers because it allowed them or their users to modify all standard operator configuration without having to deal with all the parsing and boilerplate themselves. Now, is there anything that replaces it, or should users simply embed manager.Config (or parts of it) into their own struct and deal with all the parsing themselves? Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lifecycle/frozen Indicates that an issue or PR should not be auto-closed due to staleness. priority/important-longterm Important over the long term, but may not be staffed and/or may need multiple releases to complete.
Projects
None yet
Development

No branches or pull requests

8 participants