Remove gzip encoding in Azure Kubernetes Service

2/21/2020

I have been facing a performance delay in AKS when trying to download the details from Azure blob. When i try do the same from GKE, it is very fast. The only difference is AKS has gzip and GKE has no gzip header.

So i would like to remove gzip encoding from the AKS and I have tried the below settings in the kubernetes ingress file, but no luck.

nginx.ingress.kubernetes.io/use-gzip: "false"
nginx.org/server-snippet: gzip off;
nginx.org/server-snippets: gzip off;
-- George
azure-kubernetes
azure-storage
google-kubernetes-engine
kubernetes
kubernetes-ingress

1 Answer

2/21/2020

Accodring to this it should be:

use-gzip: false

but this has to go to the nginx ingress config map, not on the ingress file

-- 4c74356b41
Source: StackOverflow