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
Issue:
Every other http POST request failed with 404 and
error message "Client sent an HTTP request to an HTTPS server".
Root Cause:
There are 2 ports present in hw-event-proxy-service,
http port 9087 and https port 8443. When a POST request arrives,
HAProxy does round robin between the two endpoints. The one
landed on port 8443 caused the error message.
Solution:
Removed the extra https port in hw-event-proxy-service.
Add targetPort:9087 in the edge route to prevent issues from
happending in the future if more ports were added.
Add annotation to disable cookie as it is not really used in webhook.
Signed-off-by: Jack Ding <[email protected]>
0 commit comments