gitops-operator icon indicating copy to clipboard operation
gitops-operator copied to clipboard

Enable Gzip Compression for argocd-server

Open BlueCog opened this issue 2 years ago • 1 comments

Our ArgoCD GUI gets very slow when accessing a application with many resources. What i'm understanding from the documentation maby enabling gzip compressions helps. This could be done via argocd-server [flags] (see docs below). But I cannot find any setting in configmaps / documentation on how to enable this in the gitops-operator.

Is there a possibility to set these extra flag(s) or would this be an feature request?

See: https://argo-cd.readthedocs.io/en/release-1.8/operator-manual/server-commands/argocd-server/ https://able8.medium.com/argocd-enable-gzip-compression-to-speed-up-web-ui-27a5bd427ca4

BlueCog avatar Jan 31 '23 15:01 BlueCog

There is extraCommandArgs for the Server (docs)

  server:
    extraCommandArgs:
    - --enable-gzip

PapaNappa avatar Jun 21 '23 14:06 PapaNappa