From 9f1dcefb6b22b4589c0cce3f410fabe92344ae99 Mon Sep 17 00:00:00 2001 From: Akos Eros Date: Wed, 24 Sep 2025 15:37:14 +0200 Subject: [PATCH] feat: Add https with edge termination to routes Allow the current http as well for backward compatibility for now resolves #471 --- charts/all/config-demo/templates/config-demo-route.yaml | 3 +++ charts/all/hello-world/templates/hello-world-route.yaml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/charts/all/config-demo/templates/config-demo-route.yaml b/charts/all/config-demo/templates/config-demo-route.yaml index 85d2e38e3..4a2677287 100644 --- a/charts/all/config-demo/templates/config-demo-route.yaml +++ b/charts/all/config-demo/templates/config-demo-route.yaml @@ -12,3 +12,6 @@ spec: name: config-demo weight: 100 wildcardPolicy: None + tls: + insecureEdgeTerminationPolicy: Allow + termination: edge diff --git a/charts/all/hello-world/templates/hello-world-route.yaml b/charts/all/hello-world/templates/hello-world-route.yaml index e321f9e4e..4b1243656 100644 --- a/charts/all/hello-world/templates/hello-world-route.yaml +++ b/charts/all/hello-world/templates/hello-world-route.yaml @@ -12,3 +12,6 @@ spec: name: hello-world weight: 100 wildcardPolicy: None + tls: + insecureEdgeTerminationPolicy: Allow + termination: edge