From 9d509ea83d8c75692c62f25c8fd04f2f60f4b69d Mon Sep 17 00:00:00 2001 From: Ishrath Ahamed Date: Mon, 7 Apr 2025 18:11:11 +0530 Subject: [PATCH] update argocd ingress configuration to specify backend protocol as HTTP --- ingress/argocd-ingress.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ingress/argocd-ingress.yaml b/ingress/argocd-ingress.yaml index 9eefa55..f78d4da 100644 --- a/ingress/argocd-ingress.yaml +++ b/ingress/argocd-ingress.yaml @@ -4,7 +4,7 @@ metadata: name: argocd-ingress namespace: argocd annotations: - nginx.ingress.kubernetes.io/ssl-redirect: "false" # Disable SSL redirection + nginx.ingress.kubernetes.io/backend-protocol: "HTTP" spec: ingressClassName: nginx rules: @@ -17,4 +17,4 @@ spec: service: name: argocd-server port: - number: 80 # Use HTTP port instead of HTTPS \ No newline at end of file + number: 80 # This connects to service port 80, which routes to pod's 8080 \ No newline at end of file