From 575fc11ada3ba76e605db0845dec20c75ca700e7 Mon Sep 17 00:00:00 2001
From: Rob Kooper <kooper@illinois.edu>
Date: Fri, 24 Jan 2025 21:31:02 -0600
Subject: [PATCH] fix traefik

---
 CHANGELOG.md                                         | 3 ++-
 charts/apps/templates/ingresscontroller/traefik.yaml | 9 ++++++---
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5c18ed9..8e3cc85 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,10 +4,11 @@ All notable changes to this project will be documented in this file.
 
 The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
 
-## Unreleased
+## 3.3.0 - 2025-01-24
 
 ### Fixed
 - removed hard coded image in cinder
+- traefik fix redirct to be redirections 
 
 ### Added
 - added timeouts for traefik (fixes harbor)
diff --git a/charts/apps/templates/ingresscontroller/traefik.yaml b/charts/apps/templates/ingresscontroller/traefik.yaml
index 3b8ab21..88d2ff4 100644
--- a/charts/apps/templates/ingresscontroller/traefik.yaml
+++ b/charts/apps/templates/ingresscontroller/traefik.yaml
@@ -39,9 +39,12 @@ spec:
             loadBalancerIP: {{ .Values.ingresscontroller.privateIP | default .Values.ingresscontroller.publicIP }}
         ports:
           web:
-            redirectTo:
-              port: websecure
-              priority: 9999
+            redirections:
+              entryPoint:
+                to: websecure
+                scheme: https
+                permanent: true
+                priority: 9999
           websecure:
             tls:
               enabled: true
-- 
GitLab