Closed edebosz-inka closed 1 year ago
Try port forwarding it to 8080 port, the port 80 may be in use with the other applications
Ok, so I changed service to:
apiVersion: v1
kind: Service
metadata:
name: service-b
spec:
selector:
app: service-b
ports:
- protocol: TCP
port: 8080
targetPort: 80
and then forwarded a service kubectl port-forward svc/service-a 8080
than accessed via http://localhost:8080/
Thank you for the pointer :)
Hi,
I'm following ingres setup for kubernetes from: https://github.com/marcel-dempers/docker-development-youtube-series/blob/master/kubernetes/ingress/controller/nginx/README.md and after executing:
I get 2 pods with config maps and services but when I try to check/test service via command:
I get an error:
service-a and service-b are deployed in default namespace. I run podman with kind on windows.
Some cluster outputs:
I'm missing something or something changed?