Hey @Ali, what you are doing is partly correct but on kubernetes you cannot just access any port, you'll have to use port forwarding. Something like this:
kubectl port-forward <insert your cloudserver pod name> 8000:80
Or you can use Kubernetes Ingress to route the external traffic to your service. This can be done by specifying the IP address of the hostname configured.