back-stack / showcase

The showcase implementation of The BACK stack
24 stars 21 forks source link

Connecting to Backstage #58

Closed danielsollondon closed 2 months ago

danielsollondon commented 2 months ago

Hi, I created a KinD cluster installation, it succeeded, no issues with pods running across all the components, however if I try to connect to backstage I just get nginx 308 redirects:

curl argocd-7xxxxxxx.nip.io 
<html>
<head><title>308 Permanent Redirect</title></head>
<body>
<center><h1>308 Permanent Redirect</h1></center>
<hr><center>nginx</center>
</body>
</html>

If I dump out the ingresses:

kubectl get ingress -A
NAMESPACE   NAME                         CLASS   HOSTS                         ADDRESS     PORTS     AGE
argocd      argo-cd-argocd-server        nginx   argocd-7xxxxxxx.nip.io        localhost   80, 443   6d17h
argocd      argo-cd-argocd-server-grpc   nginx   grpc.argocd-7xxxxxxx.nip.io   localhost   80, 443   6d17h
backstage   backstage                    nginx   backstage-7xxxxxxx.nip.io     localhost   80, 443   6d17h
vault       vault                        nginx   vault-7xxxxxxx.nip.io         localhost   80, 443   6d17h

I know I'm not doing something, any suggestions?

Thanks!

kurktchiev commented 2 months ago

curl the HTTPS port rather than the HTTP port. As the error code suggests HTTP 308 is what is used to indicate to a browser to upgrade the connection to a secure HTTPS one

danielsollondon commented 2 months ago

Thank you!