Skip to content

Commit 333cc58

Browse files
committed
increase router timeout
1 parent 21a47e6 commit 333cc58

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

charts/app/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ frontend:
114114
haproxy.router.openshift.io/rate-limit-connections.rate-http: "200000"
115115
haproxy.router.openshift.io/rate-limit-connections.rate-tcp: "5000000"
116116
haproxy.router.openshift.io/disable_cookies: "true"
117+
haproxy.router.openshift.io/timeout: 600s
117118
pdb:
118119
enabled: false # enable it in PRODUCTION for having pod disruption budget.
119120
minAvailable: 1 # the minimum number of pods that must be available during the disruption budget.

infra/variables.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,30 +57,35 @@ variable "apim_key" {
5757
description = "API Management key for Azure OpenAI API"
5858
type = string
5959
sensitive = true
60+
nullable = true
6061
}
6162

6263
variable "openai_deployment_name" {
6364
description = "Azure OpenAI primary deployment name"
6465
type = string
6566
default = "gpt-5.1-chat"
67+
nullable = true
6668
}
6769

6870
variable "openai_embedding_deployment_name" {
6971
description = "Azure OpenAI embedding deployment name"
7072
type = string
7173
default = "text-embedding-3-large"
74+
nullable = true
7275
}
7376

7477
variable "openai_endpoint" {
7578
description = "Azure OpenAI endpoint URL"
7679
type = string
7780
sensitive = true
81+
nullable = true
7882
}
7983

8084
variable "ai_search_endpoint" {
8185
description = "Azure AI Search endpoint URL"
8286
type = string
8387
sensitive = true
88+
nullable = true
8489
}
8590

8691
variable "azure_search_index_name" {
@@ -216,6 +221,7 @@ variable "document_intelligence_endpoint" {
216221
description = "Azure Document Intelligence endpoint URL"
217222
type = string
218223
sensitive = true
224+
nullable = true
219225
}
220226

221227
# Azure AI Search Module Variables

0 commit comments

Comments
 (0)