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

Bump kube-runtime from 0.69.1 to 0.70.0 in /cmd/pinniped-proxy #2

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 21, 2022

Bumps kube-runtime from 0.69.1 to 0.70.0.

Release notes

Sourced from kube-runtime's releases.

0.70.0

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.

What's Changed

Added

Changed

Fixed

New Contributors

Full Changelog: kube-rs/kube@0.69.0...0.70.0

Changelog

Sourced from kube-runtime's changelog.

0.70.0 / 2022-03-20

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.

What's Changed

Added

Changed

Fixed

Commits
  • 4e542a6 release 0.70.0
  • a9d9975 Merge pull request #852 from stackabletech/fix/enum-descriptions
  • 10cfc4b cargo +nightly clippy
  • 98fc31a Remove uneeded .to_string()
  • 2d56b21 Refactor if let clauses. Removed extended docs
  • 07ad307 panic when list of properties has not exactly one item
  • 90b95d7 Always take the description anyway
  • 24fbd19 refactor metadata to use get_or_insert_with
  • dd77a4a Fix invalid CRD when Enum variants have descriptions
  • 931cd48 Change ReconcileAction to Action and add associated ctors (#851)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [kube-runtime](https://github.com/kube-rs/kube-rs) from 0.69.1 to 0.70.0.
- [Release notes](https://github.com/kube-rs/kube-rs/releases)
- [Changelog](https://github.com/kube-rs/kube-rs/blob/master/CHANGELOG.md)
- [Commits](kube-rs/kube@0.69.1...0.70.0)

---
updated-dependencies:
- dependency-name: kube-runtime
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 21, 2022
gfichtenholt added a commit that referenced this pull request Mar 22, 2022
… similar core interface to packages API. vmware-tanzu#3496  (vmware-tanzu#4476)

* attempt #2

* checkpoint #1

* 2nd checkpoint

* Michael's feedback
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 22, 2022

Looks like kube-runtime is up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Mar 22, 2022
@dependabot dependabot bot deleted the dependabot/cargo/cmd/pinniped-proxy/kube-runtime-0.70.0 branch March 22, 2022 07:04
gfichtenholt added a commit that referenced this pull request Mar 28, 2022
gfichtenholt added a commit that referenced this pull request Mar 29, 2022
… similar core interface to packages API. vmware-tanzu#3496  (vmware-tanzu#4514)

* attempt #2

* 1st checkin

* 2nd checkpoint

* attempt #2

* small fixes

* small fix
gfichtenholt added a commit that referenced this pull request Mar 29, 2022
gfichtenholt added a commit that referenced this pull request Mar 29, 2022
gfichtenholt added a commit that referenced this pull request Apr 8, 2022
… (vmware-tanzu#4523)

* attempt #2

* attempt #2

* 1st checkpoint

* 2nd checkpoint
gfichtenholt added a commit that referenced this pull request Apr 8, 2022
gfichtenholt added a commit that referenced this pull request Apr 8, 2022
gfichtenholt added a commit that referenced this pull request Apr 8, 2022
gfichtenholt added a commit that referenced this pull request Apr 13, 2022
…milar core interface to packages API. vmware-tanzu#3496  (vmware-tanzu#4573)

* attempt #2

* minor fixes

* minor clarification

* attempt #2

* attempt #2

* 2nd step

* +yarn prettier

* small clean up

* small fixes

* forgot a file

* small clean up before final push
gfichtenholt added a commit that referenced this pull request Apr 13, 2022
gfichtenholt added a commit that referenced this pull request Apr 15, 2022
…milar core interface to packages API. vmware-tanzu#3496  (vmware-tanzu#4587)

* attempt #2

* step 1

* 2nd step
gfichtenholt added a commit that referenced this pull request Apr 15, 2022
gfichtenholt added a commit that referenced this pull request Apr 26, 2022
…lar core interface to packages API. vmware-tanzu#3496  (vmware-tanzu#4594)

* attempt #2

* 1st checkin

* 2nd checkin

* 2nd checkin

* Michael's feedback
gfichtenholt added a commit that referenced this pull request Apr 26, 2022
gfichtenholt added a commit that referenced this pull request Apr 27, 2022
gfichtenholt added a commit that referenced this pull request Apr 28, 2022
…lar core interface to packages API. vmware-tanzu#3496  (vmware-tanzu#4618)

* attempt #2

* step 7 for  Investigate and propose package repositories API with similar core interface to packages API. vmware-tanzu#3496

* 2nd checkin

* attempt #2

* fixed some errors and improved handling in integration tests
gfichtenholt added a commit that referenced this pull request Apr 28, 2022
gfichtenholt added a commit that referenced this pull request May 5, 2022
…ubeapps-managed secrets environment (vmware-tanzu#4630)

* attempt #2

* added logic to DeletePackageRepository() to auto-delete secrets for kubeapps-managed secrets environment

*
1. added some validation code when dealing with secrets
2. removed all support for DockerCredentials secrets (flux doesn't support it)

* Michael's feedback: set ownerReferences on secrets created by kubeapps
gfichtenholt added a commit that referenced this pull request May 5, 2022
gfichtenholt added a commit that referenced this pull request May 14, 2022
…ory with kubeapps managed secrets (vmware-tanzu#4652)

* attempt #2

* hide sensitive data (passwords/certs) for GetPackageRepoDetail and UpdatePackageRepository/

* Michael's feedback and DRYing up integration test code
gfichtenholt added a commit that referenced this pull request May 14, 2022
gfichtenholt added a commit that referenced this pull request May 14, 2022
gfichtenholt added a commit that referenced this pull request May 14, 2022
gfichtenholt added a commit that referenced this pull request May 18, 2022
…-tanzu#4708)

* attempt #2

* remove unneeded .../plugin/... from URL paths in flux2.proto

* removed unneeded file from PR

* removed un-needed files from PR

* removed un-needed files

* remove un-needed files

* remove unneeded files

* an attempt to get rid of unneeded code in code-generator module

* changed openapi.yaml per Antonio's advice

* attempt to revert the changes to submodule
gfichtenholt added a commit that referenced this pull request Sep 3, 2022
gfichtenholt added a commit that referenced this pull request Sep 6, 2022
gfichtenholt added a commit that referenced this pull request Sep 21, 2022
… accounts vmware-tanzu#5219  (vmware-tanzu#5305)

* incremental

* incremental

* incremental

* incremental

* Antonio's feedback

* Antonio's feedback #2
gfichtenholt added a commit that referenced this pull request Sep 23, 2022
gfichtenholt added a commit that referenced this pull request Sep 29, 2022
…use case with GCP workload identity (vmware-tanzu#5368)

* incremental

* incremental

* incremental

* incremental

* incremental

* incremental

* incremental

* fix lint warning

* go mod tidy

* incremental

* incremental

* incremental

* incremental

* incremental

* try to fix code QL error

* try to fix code QL #2
gfichtenholt added a commit that referenced this pull request Oct 18, 2022
gfichtenholt added a commit that referenced this pull request Oct 22, 2022
…mware-tanzu#2881  (vmware-tanzu#5410)

* integration test intermittent failures

* incremental

* add flux e2e test

* incremental

* incremental

* clean up log.Info

* bump flux version

* fix merge error

* fix merge error #2

* fix merge #3

* fix merge #4
gfichtenholt added a commit that referenced this pull request Nov 29, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
0 participants