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