You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting a 307 too many redirects error when trying to access the URL associated with my ArgoCD UI deployment. I have an internal AWS NLB trying to forward https traffic on port 443 to my AWS EKS node groups. The target's health checks of the node group instances is healthy. I am basically trying to expose an internal, secure ArgoCD UI at a specific staging URL for internal monitoring of our AWS EKS cluster. This AWS EKS cluster is inside the private subnet of our VPC.
I can telnet the internal IP of my AWS NLB on port 443 successfully. I can also setup a local port forwarding with kubectl port-forward svc/argocd-server -n argocd 8080:443 and access the ArgoCD UI at localhost:8080
kubectl logs -l app.kubernetes.io/name=argocd-server -n argocd
time="2024-09-11T15:27:30Z" level=info msg="Enabled application namespace patterns: argocd"
time="2024-09-11T15:27:30Z" level=info msg="0xc000d7d080 subscribed to settings updates"
time="2024-09-11T15:27:30Z" level=info msg="Starting rbac config informer"
time="2024-09-11T15:27:30Z" level=info msg="RBAC ConfigMap 'argocd-rbac-cm' added"
time="2024-09-11T15:27:57Z" level=info msg="invalidated cache for resource in namespace: argocd with the name: argocd-notifications-secret"
time="2024-09-11T15:27:57Z" level=info msg="invalidated cache for resource in namespace: argocd with the name: argocd-notifications-cm"
time="2024-09-11T15:30:57Z" level=info msg="invalidated cache for resource in namespace: argocd with the name: argocd-notifications-secret"
time="2024-09-11T15:30:57Z" level=info msg="invalidated cache for resource in namespace: argocd with the name: argocd-notifications-cm"
time="2024-09-11T15:33:57Z" level=info msg="invalidated cache for resource in namespace: argocd with the name: argocd-notifications-secret"
time="2024-09-11T15:33:57Z" level=info msg="invalidated cache for resource in namespace: argocd with the name: argocd-notifications-cm"
This discussion was converted from issue #19894 on September 19, 2024 13:23.
Heading
Bold
Italic
Quote
Code
Link
Numbered list
Unordered list
Task list
Attach files
Mention
Reference
Menu
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Checklist:
argocd version
.Describe the bug
I'm getting a 307 too many redirects error when trying to access the URL associated with my ArgoCD UI deployment. I have an internal AWS NLB trying to forward https traffic on port 443 to my AWS EKS node groups. The target's health checks of the node group instances is healthy. I am basically trying to expose an internal, secure ArgoCD UI at a specific staging URL for internal monitoring of our AWS EKS cluster. This AWS EKS cluster is inside the private subnet of our VPC.
I can telnet the internal IP of my AWS NLB on port 443 successfully. I can also setup a local port forwarding with
kubectl port-forward svc/argocd-server -n argocd 8080:443
and access the ArgoCD UI at localhost:8080argocd-cm.yaml:
argocd-network-policy.yaml:
argocd-server-service.yaml:
relevant terraform info:
To Reproduce
Expected behavior
Should be able to access the argocd ui internally without getting a 307 too many redirects error.
Screenshots
Version
Logs
Curl:
curl -v https://argocd.staging.redacted.com
< HTTP/1.1 307 Temporary Redirect
< Content-Type: text/html; charset=utf-8
< Location: https://argocd.staging.redacted.com/
< Date: Wed, 11 Sep 2024 15:34:34 GMT
< Content-Length: 73
<
Temporary Redirect.
Beta Was this translation helpful? Give feedback.
All reactions