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
Anytime I want to sync/refresh an app or restart/delete a resource from the ArgoCD UI, nothing happens in the UI until I do a hard refresh of the browser. I also can't view any logs. Things were working fine until I upgraded the version to the latest and threw it behind an application loadbalancer. I followed the AWS ingress documentation from the website. I've tried to search stack overflow and the other issues to see how I can fix this problem but have had no luck. Any assistance would be greatly appreciated. I have a video of the problem but it won't upload.
Expected behavior
The UI should update anytime changes are made or an event is triggered from the UI.
apiVersion: v1
kind: Service
metadata:
annotations:
alb.ingress.kubernetes.io/backend-protocol-version: GRPC # This tells AWS to send traffic from the ALB using GRPC. Plain HTTP2 can be used, but the health checks wont be available because argo currently downgrade non-grpc calls to HTTP1
labels:
app: argogrpc
name: argogrpc
namespace: argocd
spec:
ports:
- name: "443"
port: 443
protocol: TCP
targetPort: 8080
selector:
app.kubernetes.io/name: argocd-server
sessionAffinity: None
type: NodePort
ingress
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
kubernetes.io/ingress.class: alb
alb.ingress.kubernetes.io/scheme: "internet-facing"
alb.ingress.kubernetes.io/target-type: "ip"
alb.ingress.kubernetes.io/backend-protocol: HTTPS # ALB to ArgoCD uses HTTP
alb.ingress.kubernetes.io/subnets: <my subnets>
alb.ingress.kubernetes.io/certificate-arn: <my aws cert>
# Use this annotation (which must match a service name) to route traffic to HTTP2 backends.
alb.ingress.kubernetes.io/conditions.argogrpc: |
[{"field":"http-header","httpHeaderConfig":{"httpHeaderName": "Content-Type", "values":["application/grpc"]}}]
alb.ingress.kubernetes.io/listen-ports: '[{"HTTPS":443}]'
name: argocd
namespace: argocd
spec:
ingressClassName: alb
rules:
- host: argocd.mydomain.com
http:
paths:
- path: /
backend:
service:
name: argogrpc # The grpc service must be placed before the argocd-server for the listening rules to be created in the correct order
port:
number: 443
pathType: Prefix
- path: /
backend:
service:
name: argocd-server
port:
number: 443
pathType: Prefix
tls:
- hosts:
- argocd.mydomain.com
The text was updated successfully, but these errors were encountered:
Checklist:
argocd version
.Describe the bug
Anytime I want to sync/refresh an app or restart/delete a resource from the ArgoCD UI, nothing happens in the UI until I do a hard refresh of the browser. I also can't view any logs. Things were working fine until I upgraded the version to the latest and threw it behind an application loadbalancer. I followed the AWS ingress documentation from the website. I've tried to search stack overflow and the other issues to see how I can fix this problem but have had no luck. Any assistance would be greatly appreciated. I have a video of the problem but it won't upload.
Expected behavior
The UI should update anytime changes are made or an event is triggered from the UI.
Screenshots
Version
ingress service
ingress
The text was updated successfully, but these errors were encountered: