Kubernetes Services are a great way to combine Kubernetes networking with the dynamic and often automated nature of Kubernetes applications. In this lab, you will use Services to expose existing Kubernetes Pods. This will allow you to practice your skills with Kubernetes Services.
Learning Objectives
Successfully complete this lab by achieving the following learning objectives:
- Expose the Pods from the User-db Deployment as an Internal Service
Find the
user-db
deployment in thedefault
namespace. Create a Service that will expose its Pods to other components within the cluster. This Service should not be accessible from outside the cluster.- Expose the Pods from the Web-frontend Deployment as an External Service
Locate the
web-frontend
deployment in thedefault
namespace as well. Create a Service that will expose its Pods on port 30080 of each cluster node.