From 77b1b50f11b5fe9d00796111f35c09fdce3bd4e6 Mon Sep 17 00:00:00 2001
From: Rob Kooper <kooper@illinois.edu>
Date: Wed, 16 Oct 2024 21:28:14 -0600
Subject: [PATCH] add timeouts for traefik

---
 CHANGELOG.md                                         | 8 ++++++++
 charts/apps/templates/ingresscontroller/traefik.yaml | 5 +++++
 2 files changed, 13 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 73633cb..844a71d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,14 @@ 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
+
+### Fixed
+- removed hard coded image in cinder
+
+### Added
+- added timeouts for traefik (fixes harbor)
+
 ## 3.2.1 - 2024-09-07
 
 ### Changed
diff --git a/charts/apps/templates/ingresscontroller/traefik.yaml b/charts/apps/templates/ingresscontroller/traefik.yaml
index 2fbbfa4..3b8ab21 100644
--- a/charts/apps/templates/ingresscontroller/traefik.yaml
+++ b/charts/apps/templates/ingresscontroller/traefik.yaml
@@ -48,6 +48,11 @@ spec:
               {{- if .Values.ingresscontroller.traefik.acme }}
               certResolver: letsencrypt
               {{- end }}
+            transport:
+              respondingTimeouts:
+                idleTimeout: 600
+                writeTimeout: 600
+                readTimeout: 600
           {{- if .Values.ingresscontroller.traefik.ports }}
           {{- .Values.ingresscontroller.traefik.ports | toYaml | nindent 10 }}
           {{- end }}
-- 
GitLab