mirror of https://github.com/linkerd/linkerd2.git
edge-23.1.1 (#10129)
This edge release introduces a number of different fixes changes to the proxy. The proxy has been updated to initialize routes lazily, which means service profile routes will now only show up in the metrics when a route is used. In the extensions, old (`ServerAuthorization`) resources have been converted to `AuthorizationPolicy` -- as part of this change, redundant policy resources have been cleaned up. A bug in the destination controller that could potentially lead to stale pods being considered in the load balancer has been fixed; operations that could previously result in this behavior are now infallible. Support has been added for `Pod Security Admission`, used instead of `Pod Security Policy`, as part of this change, some of the extension charts have been modified to include a `cniEnabled` flag that will impact the policy used. Finally, this edge release contains a number of fixes and improvements from our contributors. * Converted `ServerAuthorization` resources to `AuthorizationPolicy` resources in Linkerd extensions * Removed policy resources bound to admin servers in extensions (previously these resources were used to authorize probes but now are authorized by default) * Added a `resources` field in the linkerd-cni chart (thanks @jcogilvie!) * Fixed an issue in the CLI where `--identity-external-ca` would set an incorrect field (thanks @anoxape!) * Fixed an issue in the destination controller that could result in stale endpoints when using EndpointSlice objects. Logic that previously resulted in undefined behavior is now infallible and endpoints will no longer be skipped during removal * Added namespace to namespace-metadata resources in Helm (thanks @joebowbeer!) * Added support for Pod Security Admission (superseedes PSPs); through this change extensions now have a `cniEnabled` value in their charts that will directly influence which PSA policy to use * Changed routes to be initialized lazily. Service Profile routes will no longer show up in metrics until the route is used (default routes are always available when no Service Profile is defined for a service) * Changed the proxy's behavior when traffic splitting so that only services that are not in failfast are used. This will enable the proxy to manage failover without external coordination * Updated tokio (async runtime) in the proxy which should reduce CPU usage, especially for proxy's pod local (i.e in the same network namespace) communication Signed-off-by: Matei David <matei@buoyant.io> Co-authored-by: Kevin Leimkuhler <kleimkuhler@icloud.com>
This commit is contained in:
parent
21893381a1
commit
028a68265e
48
CHANGES.md
48
CHANGES.md
|
@ -1,5 +1,53 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## edge-23.1.1
|
||||||
|
|
||||||
|
This edge release fixes a caching issue in the destination controller, converts
|
||||||
|
deprecated policy resources, and introduces several changes to how the proxy
|
||||||
|
works.
|
||||||
|
|
||||||
|
A bug in the destination controller that could potentially lead to stale pods
|
||||||
|
being considered in the load balancer has been fixed.
|
||||||
|
|
||||||
|
Several Linkerd extensions were still using the now deprecated
|
||||||
|
ServerAuthorization resource. These instances have now been converted to using
|
||||||
|
AuthorizationPolicy. Additionally, removed several policy resources that
|
||||||
|
authenticated probes, since probes are now authenticated by default.
|
||||||
|
|
||||||
|
As part of ongoing policy work, there are several changes with how the proxy
|
||||||
|
works. Routes are now lazily initialized so that service profile routes will
|
||||||
|
not show up in metrics until the route is used. Furthermore, the proxy’s
|
||||||
|
traffic splitting behavior has changed so that only available resources are
|
||||||
|
used, resulting in less failfast errors.
|
||||||
|
|
||||||
|
Finally, this edge release contains a number of fixes and improvements from our
|
||||||
|
contributors.
|
||||||
|
|
||||||
|
* Converted `ServerAuthorization` resources to `AuthorizationPolicy` resources
|
||||||
|
in Linkerd extensions
|
||||||
|
* Removed policy resources bound to admin servers in extensions (previously
|
||||||
|
these resources were used to authorize probes but now are authorized by
|
||||||
|
default)
|
||||||
|
* Added a `resources` field in the linkerd-cni chart (thanks @jcogilvie!)
|
||||||
|
* Fixed an issue in the CLI where `--identity-external-ca` would set an
|
||||||
|
incorrect field (thanks @anoxape!)
|
||||||
|
* Fixed an issue in the destination controller's cache that could result in
|
||||||
|
stale endpoints when using EndpointSlice objects
|
||||||
|
* Added namespace to namespace-metadata resources in Helm (thanks @joebowbeer!)
|
||||||
|
* Added support for Pod Security Admission (Pod Security Policy resources are
|
||||||
|
still supported but disabled by default)
|
||||||
|
* Changed routes to be initialized lazily. Service Profile routes will no
|
||||||
|
longer show up in metrics until the route is used (default routes are always
|
||||||
|
available when no Service Profile is defined for a service)
|
||||||
|
* Changed the proxy's behavior when traffic splitting so that only services
|
||||||
|
that are not in failfast are used. This will enable the proxy to manage
|
||||||
|
failover without external coordination
|
||||||
|
* Updated tokio (async runtime) in the proxy which should reduce CPU usage,
|
||||||
|
especially for proxy's pod local (i.e in the same network namespace)
|
||||||
|
communication
|
||||||
|
* Fixed an issue where `linkerd viz tap` would display wrong latency/duration
|
||||||
|
value (thanks @olegy2008!)
|
||||||
|
|
||||||
## edge-22.12.1
|
## edge-22.12.1
|
||||||
|
|
||||||
This edge release introduces static and dynamic port overrides for CNI eBPF
|
This edge release introduces static and dynamic port overrides for CNI eBPF
|
||||||
|
|
|
@ -16,7 +16,7 @@ dependencies:
|
||||||
- name: partials
|
- name: partials
|
||||||
version: 0.1.0
|
version: 0.1.0
|
||||||
repository: file://../partials
|
repository: file://../partials
|
||||||
version: 1.11.0-edge
|
version: 1.11.1-edge
|
||||||
icon: https://linkerd.io/images/logo-only-200h.png
|
icon: https://linkerd.io/images/logo-only-200h.png
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Linkerd authors
|
- name: Linkerd authors
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
Linkerd gives you observability, reliability, and security
|
Linkerd gives you observability, reliability, and security
|
||||||
for your microservices — with no code change required.
|
for your microservices — with no code change required.
|
||||||
|
|
||||||

|

|
||||||

|

|
||||||

|

|
||||||
|
|
||||||
|
|
|
@ -9,4 +9,4 @@ description: |
|
||||||
kubeVersion: ">=1.21.0-0"
|
kubeVersion: ">=1.21.0-0"
|
||||||
icon: https://linkerd.io/images/logo-only-200h.png
|
icon: https://linkerd.io/images/logo-only-200h.png
|
||||||
name: "linkerd2-cni"
|
name: "linkerd2-cni"
|
||||||
version: 30.5.1-edge
|
version: 30.6.0-edge
|
||||||
|
|
|
@ -6,7 +6,7 @@ Linkerd [CNI plugin](https://linkerd.io/2/features/cni/) takes care of setting
|
||||||
up your pod's network so incoming and outgoing traffic is proxied through the
|
up your pod's network so incoming and outgoing traffic is proxied through the
|
||||||
data plane.
|
data plane.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ kubeVersion: ">=1.21.0-0"
|
||||||
name: linkerd-jaeger
|
name: linkerd-jaeger
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/linkerd/linkerd2/
|
- https://github.com/linkerd/linkerd2/
|
||||||
version: 30.6.0-edge
|
version: 30.6.1-edge
|
||||||
icon: https://linkerd.io/images/logo-only-200h.png
|
icon: https://linkerd.io/images/logo-only-200h.png
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Linkerd authors
|
- name: Linkerd authors
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
The Linkerd-Jaeger extension adds distributed tracing to Linkerd using
|
The Linkerd-Jaeger extension adds distributed tracing to Linkerd using
|
||||||
OpenCensus and Jaeger.
|
OpenCensus and Jaeger.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ kubeVersion: ">=1.21.0-0"
|
||||||
name: "linkerd-multicluster"
|
name: "linkerd-multicluster"
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/linkerd/linkerd2/
|
- https://github.com/linkerd/linkerd2/
|
||||||
version: 30.3.6-edge
|
version: 30.3.7-edge
|
||||||
icon: https://linkerd.io/images/logo-only-200h.png
|
icon: https://linkerd.io/images/logo-only-200h.png
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Linkerd authors
|
- name: Linkerd authors
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
The Linkerd-Multicluster extension contains resources to support multicluster
|
The Linkerd-Multicluster extension contains resources to support multicluster
|
||||||
linking to remote clusters
|
linking to remote clusters
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ kubeVersion: ">=1.21.0-0"
|
||||||
name: "linkerd-viz"
|
name: "linkerd-viz"
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/linkerd/linkerd2/
|
- https://github.com/linkerd/linkerd2/
|
||||||
version: 30.4.6-edge
|
version: 30.4.7-edge
|
||||||
icon: https://linkerd.io/images/logo-only-200h.png
|
icon: https://linkerd.io/images/logo-only-200h.png
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: Linkerd authors
|
- name: Linkerd authors
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
The Linkerd-Viz extension contains observability and visualization
|
The Linkerd-Viz extension contains observability and visualization
|
||||||
components for Linkerd.
|
components for Linkerd.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue