From cf806912ad11bea800ff7a95a96e78d3135bcee3 Mon Sep 17 00:00:00 2001 From: Zdravko Iliev <zdravko.iliev@vereign.com> Date: Wed, 16 Aug 2023 07:41:47 +0000 Subject: [PATCH] ci: add nginx ingress proxy timeout --- apps/gateway/deployment/ci-cd/helm/templates/ingress.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/gateway/deployment/ci-cd/helm/templates/ingress.yaml b/apps/gateway/deployment/ci-cd/helm/templates/ingress.yaml index d801ea96..d4bcb022 100644 --- a/apps/gateway/deployment/ci-cd/helm/templates/ingress.yaml +++ b/apps/gateway/deployment/ci-cd/helm/templates/ingress.yaml @@ -5,6 +5,9 @@ metadata: name: {{ template "app.name" . }} namespace: {{ .Release.Namespace }} annotations: + nginx.ingress.kubernetes.io/proxy-connect-timeout: "3600" + nginx.ingress.kubernetes.io/proxy-send-timeout: "3600" + nginx.ingress.kubernetes.io/proxy-read-timeout: "3600" {{ toYaml .Values.ingress.annotations | indent 4 }} labels: {{- include "app.labels" . | nindent 4 }} -- GitLab