
Here’s the info we need to pass:
**Cluster** - This is the cluster we added earlier, our application will be deployed there.
**Namespace** - We’ll use default for our namespace but you can create and use a new one if you’d prefer. Namespaces are discrete units for grouping all the services associated with an application.
**Service name** - You can name the service whatever you like. Since we’re deploying Mongo, I’ll just name it mongo!
**Expose port** - We don’t need to expose the port outside of our cluster so we won’t check the box for now but we will specify a port where other containers can talk to this service. Mongo’s default port is ‘27017’.
**Image** - Mongo is a public image on Dockerhub, so I can reference it by name and tag, ‘mongo:latest’.
**Internal Ports** - This is the port the mongo application listens on, in this case it’s ‘27017’ again.
We can ignore the other options for now.
3. Scroll down and click **Deploy**.
