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

Support accessing Kubernetes cluster with IP as CNAME #422

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

### Fixed
- mirrord-layer: Return errors from agent when `connect` fails back to the hook (previously we were handling these as errors in layer, so `connect` had slightly wrong behavior).
- mirrord-layer: workaround for `presented server name type wasn't supported` error when Kubernetes server has IP for CN in certificate. [[#388](https://github.com/metalbear-co/mirrord/issues/388)]

### Changed
- mirrord-layer: Use `tracing::instrument` to improve logs.
- CI: pin rust nightly channel to 2022-09-13.
Expand Down
15 changes: 12 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ streammap-ext = "0.1"
# so we patch crates.io to use the latest commits from rustls
# this should be changed once a newer version of rustls is ou
[patch.crates-io]
rustls = { git = 'https://github.com/rustls/rustls' }
rustls = { git = "https://github.com/metalbear-co/rustls", branch = "feat-ip-address" }

[patch."https://github.com/ctz/webpki"]
webpki = { git = "https://github.com/metalbear-co/webpki", branch = "feat-ip-address" }

[profile.release]
strip = "debuginfo"
Expand Down