From 02459af88e835b48134404397d9d298d772f3ff8 Mon Sep 17 00:00:00 2001 From: Guilherme Cassolato Date: Tue, 10 Oct 2023 12:54:18 +0200 Subject: [PATCH] Superseding of strict host subsets between AuthConfigs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enables [superseding of strict host subsets](https://github.com/Kuadrant/authorino/blob/main/docs/architecture.md#avoiding-host-name-collision) in Authorino – i.e., set `SupersedingHostSubsets` to `true` in the Authorino CR. Closes #264. --- controllers/kuadrant_controller.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/controllers/kuadrant_controller.go b/controllers/kuadrant_controller.go index 08a529c2c..5798a3f11 100644 --- a/controllers/kuadrant_controller.go +++ b/controllers/kuadrant_controller.go @@ -487,7 +487,8 @@ func (r *KuadrantReconciler) reconcileAuthorino(ctx context.Context, kObj *kuadr Namespace: kObj.Namespace, }, Spec: authorinov1beta1.AuthorinoSpec{ - ClusterWide: true, + ClusterWide: true, + SupersedingHostSubsets: true, Listener: authorinov1beta1.Listener{ Tls: authorinov1beta1.Tls{ Enabled: &tmpFalse,