From 57f52052077e24d3093931bc30a4ba4668fadb46 Mon Sep 17 00:00:00 2001 From: Luke Kysow <1034429+lkysow@users.noreply.github.com> Date: Wed, 1 Feb 2023 13:58:31 -0800 Subject: [PATCH] Changelog --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index db8162167e..dd5f451442 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ ## UNRELEASED +BREAKING CHANGES: +* Helm: + * Change defaults to exclude the `openebs` namespace from sidecar injection. If you previously had pods in that namespace + that you wanted to be injected, you must now set `namespaceSelector` as follows: + + ```yaml + connectInject: + namespaceSelector: | + matchExpressions: + - key: "kubernetes.io/metadata.name" + operator: "NotIn" + values: ["kube-system","local-path-storage"] + ``` + [[GH-1869](https://github.com/hashicorp/consul-k8s/pull/1869)] + IMPROVEMENTS: * Helm: * Kubernetes v1.26 is now supported. Minimum tested version of Kubernetes is now v1.23. [[GH-1852](https://github.com/hashicorp/consul-k8s/pull/1852)]