mirror of https://github.com/linkerd/linkerd2.git
Add changes for `edge-19.8.3` (#3265)
Signed-off-by: Andrew Seigner <siggy@buoyant.io>
This commit is contained in:
parent
fd5fc07db1
commit
a213343978
31
CHANGES.md
31
CHANGES.md
|
@ -1,3 +1,34 @@
|
||||||
|
## edge-19.8.3
|
||||||
|
|
||||||
|
This edge release introduces a new `linkerd stat trafficsplits` subcommand, to
|
||||||
|
show traffic split metrics. It also introduces a "Kubernetes cluster monitoring"
|
||||||
|
Grafana dashboard.
|
||||||
|
|
||||||
|
* CLI
|
||||||
|
* Added traffic split metrics via `linkerd stat trafficsplits` subcommand
|
||||||
|
* Fixed `linkerd uninject` not removing `linkerd.io/inject: enabled`
|
||||||
|
annotations
|
||||||
|
* Fixed `linkerd stat -h` example commands (thanks @ethan-daocloud!)
|
||||||
|
* Controller
|
||||||
|
* Removed unauthenticated tap from the Public API
|
||||||
|
* Proxy
|
||||||
|
* Added `request_handle_us` histogram to measure proxy overhead
|
||||||
|
* Updated the tap server to only admit requests from the control plane's tap
|
||||||
|
controller
|
||||||
|
* Fixed a bug where tap would stop streaming after a short amount of time
|
||||||
|
* Fixed a bug that could cause the proxy to leak service discovery resolutions
|
||||||
|
to the Destination controller
|
||||||
|
* Web UI
|
||||||
|
* Added "Kubernetes cluster monitoring" Grafana dashboard with cluster and
|
||||||
|
containers metrics
|
||||||
|
* Internal
|
||||||
|
* Updated `linkerd install` and `linkerd upgrade` to use Helm charts for
|
||||||
|
templating
|
||||||
|
* Pinned Helm tooling to `v2.14.3`
|
||||||
|
* Added Helm integration tests
|
||||||
|
* Added container CPU and memory usage to `linkerd-heartbeat` requests
|
||||||
|
* Removed unused inject code (thanks @alenkacz!)
|
||||||
|
|
||||||
## edge-19.8.2
|
## edge-19.8.2
|
||||||
|
|
||||||
This edge release introduces the new Linkerd control plane Helm chart, named
|
This edge release introduces the new Linkerd control plane Helm chart, named
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
apiVersion: "v1"
|
apiVersion: "v1"
|
||||||
appVersion: edge-19.8.2
|
appVersion: edge-19.8.3
|
||||||
description: Linkerd gives you observability, reliability, and security for your microservices — with no code change required.
|
description: Linkerd gives you observability, reliability, and security for your microservices — with no code change required.
|
||||||
home: https://linkerd.io
|
home: https://linkerd.io
|
||||||
keywords:
|
keywords:
|
||||||
|
|
|
@ -7,7 +7,7 @@ EnableH2Upgrade: true
|
||||||
ImagePullPolicy: &image_pull_policy IfNotPresent
|
ImagePullPolicy: &image_pull_policy IfNotPresent
|
||||||
|
|
||||||
# control plane version. See Proxy section for proxy version
|
# control plane version. See Proxy section for proxy version
|
||||||
LinkerdVersion: &linkerd_version edge-19.8.2
|
LinkerdVersion: &linkerd_version edge-19.8.3
|
||||||
|
|
||||||
Namespace: linkerd
|
Namespace: linkerd
|
||||||
OmitWebhookSideEffects: false
|
OmitWebhookSideEffects: false
|
||||||
|
|
Loading…
Reference in New Issue