From 1aa26ce8b9d874051fc9d86516b483011d493f55 Mon Sep 17 00:00:00 2001 From: Ishrath Ahamed Date: Mon, 7 Apr 2025 14:59:08 +0530 Subject: [PATCH] add argocd ingress configuration to disable SSL redirection and use HTTP --- ingress/argocd-ingress.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 ingress/argocd-ingress.yaml diff --git a/ingress/argocd-ingress.yaml b/ingress/argocd-ingress.yaml new file mode 100644 index 0000000..60e89a7 --- /dev/null +++ b/ingress/argocd-ingress.yaml @@ -0,0 +1,20 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: argocd-ingress + namespace: argocd + annotations: + nginx.ingress.kubernetes.io/ssl-redirect: "false" # Disable SSL redirection +spec: + ingressClassName: nginx + rules: + - host: quat-argocd.cloudsolutions.com.lk + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: argocd-server + port: + number: 80 # Use HTTP port instead of HTTPS \ No newline at end of file