From 7829fcc28db6c26adae6fe616da39c25af12060b Mon Sep 17 00:00:00 2001 From: Alex Leong Date: Thu, 2 May 2019 14:23:16 -0700 Subject: [PATCH] Release notes for Edge-19.5.1 (#2784) * CLI * Added a `linkerd check config` command for verifying that `linkerd install config` was successful * Improved the help documentation of `linkerd install` to clarify flag usage * Added support for private Kubernetes clusters by changing the CLI to connect to the control plane using a port-forward (thanks, @jackprice!) * Controller * Fixed pod creation failure when a `ResourceQuota` exists by adding a default resource spec for the proxy-init init container * Proxy * Replaced the fixed reconnect backoff with an exponential one (thanks, @zaharidichev!) * Fixed an issue where load balancers can become stuck * Internal * Fixed integration tests by adding known proxy-injector log warning to tests Signed-off-by: Alex Leong --- CHANGES.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index a47f56897..f37409580 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,21 @@ +## edge-19.5.1 + +* CLI + * Added a `linkerd check config` command for verifying that + `linkerd install config` was successful + * Improved the help documentation of `linkerd install` to clarify flag usage + * Added support for private Kubernetes clusters by changing the CLI to connect + to the control plane using a port-forward (thanks, @jackprice!) +* Controller + * Fixed pod creation failure when a `ResourceQuota` exists by adding a default + resource spec for the proxy-init init container +* Proxy + * Replaced the fixed reconnect backoff with an exponential one (thanks, + @zaharidichev!) + * Fixed an issue where load balancers can become stuck +* Internal + * Fixed integration tests by adding known proxy-injector log warning to tests + ## edge-19.4.5 **Significant Update**