Add ingress annotations
This commit is contained in:
parent
1554a3eef5
commit
5165503d0a
@ -537,9 +537,19 @@ annotations:
|
|||||||
ingress:
|
ingress:
|
||||||
kubernetes.io/ingress.class: nginx
|
kubernetes.io/ingress.class: nginx
|
||||||
nginx.ingress.kubernetes.io/backend-protocol: HTTPS
|
nginx.ingress.kubernetes.io/backend-protocol: HTTPS
|
||||||
nginx.ingress.kubernetes.io/configuration-snippet: |
|
nginx.ingress.kubernetes.io/proxy-read-timeout: "3600"
|
||||||
proxy_set_header Upgrade "websocket";
|
nginx.ingress.kubernetes.io/proxy-send-timeout: "3600"
|
||||||
proxy_set_header Connection "Upgrade";
|
nginx.ingress.kubernetes.io/server-snippets: |
|
||||||
|
location / {
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header X-Forwarded-Host $http_host;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
proxy_cache_bypass $http_upgrade;
|
||||||
|
}
|
||||||
|
|
||||||
# Kubernetes service account to create/use.
|
# Kubernetes service account to create/use.
|
||||||
serviceAccount:
|
serviceAccount:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user