December 2017
Intermediate to advanced
404 pages
9h 28m
English
At this point, you have all required services for the MyEvents application running in your Kubernetes cluster. However, there is no convenient way (yet) to access these services from outside the cluster. One possible solution to make them accessible would be to use NodePort services (which we have done before in one of the previous sections). However, this would result in your services being exposed at some randomly chosen high TCP ports, which is not desirable for a production setup (HTTP(S) services should be available at TCP ports 80 and 443).
If your Kubernetes cluster is running in a public cloud environment (more precisely, AWS, GCE, or Azure), you can create a LoadBalancer Service as follows:
apiVersion: v1 ...
Read now
Unlock full access