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

release preparation for 0.70.0 #853

Closed
clux opened this issue Mar 19, 2022 · 2 comments
Closed

release preparation for 0.70.0 #853

clux opened this issue Mar 19, 2022 · 2 comments

Comments

@clux
Copy link
Member

clux commented Mar 19, 2022

good morning maintainers.

we got a pretty good list of things unreleased in this milestone so was planning on cutting 0.70.0 even though we have a few duplicate dependents for the rustls branch

suggested highlights:

Support for EC keys with rustls

This was one of the big blockers for using rustls against clusters like k3d or k3s
While not sufficient to fix using those clusters out of the box, it is now possible to use them with a workarodund

More ergonomic reconciler

The signature and end the Ok action in reconcile fns has been simplified slightly, and requires the following user updates:

-async fn reconcile(obj: Arc<MyObject>, ctx: Context<Data>) -> Result<ReconcilerAction, Error> {
-    ...
-    Ok(ReconcilerAction {
-        requeue_after: Some(Duration::from_secs(300)),
-    })
+async fn reconcile(obj: Arc<MyObject>, ctx: Context<Data>) -> Result<Action, Error> {
+    ...
+    Ok(Action::requeue(Duration::from_secs(300)))

The Action import lives in the same place as the old ReconcilerAction.

@clux
Copy link
Member Author

clux commented Mar 19, 2022

will send this out tomorrow morning

@clux
Copy link
Member Author

clux commented Mar 20, 2022

closed by 4e542a6

@clux clux closed this as completed Mar 20, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant