Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ingress Proxy read timeout set to 600 seconds #162

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/bigdata-proxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: bigdata-proxy
description: A Helm chart for the Spot Big Data Proxy
type: application
version: 0.4.1
version: 0.4.2
appVersion: 0.5.0
home: https://github.com/spotinst/charts
icon: https://docs.spot.io/_media/images/spot_mark.png
Expand Down
2 changes: 2 additions & 0 deletions charts/bigdata-proxy/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ metadata:
nginx.ingress.kubernetes.io/auth-tls-verify-client: "on"
# Secret containing the trusted ca certificates
nginx.ingress.kubernetes.io/auth-tls-secret: {{ printf "%s/%s" .Values.ingress.secretNamespace .Values.ingress.secretName }}
# Override proxy timeout to give time for possible cluster scale up
nginx.ingress.kubernetes.io/proxy-read-timeout: {{ .Values.ingress.readTimeout | quote }}
spec:
ingressClassName: {{ .Values.ingress.ingressClassName }}
rules:
Expand Down
1 change: 1 addition & 0 deletions charts/bigdata-proxy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ ingress:
create: true
prefixPath: "" # Defaults to bigdata-proxy.fullname
ingressClassName: spot-bigdata-nginx
readTimeout: 600
host: "" # Overridden at deploy time
secretNamespace: "" # Overridden at deploy time
secretName: "" # Overridden at deploy time
Expand Down
Loading