Skip to content
This repository has been archived by the owner on Jun 6, 2019. It is now read-only.

Latest commit

 

History

History
24 lines (16 loc) · 690 Bytes

run-a-sample-application.md

File metadata and controls

24 lines (16 loc) · 690 Bytes

Run a sample application

Start a small sample application in your kubernetes cluster. We'll use this app. It logs every http request made, so you can verify that the log aggregator is working:

kubectl run --image manifoldco/service-catalog-simple-web-app simple-web-app
kubectl expose deployment --type NodePort --port 80 simple-web-app
minikube service simple-web-app

You should now see the web app running in your browser:

Image of simple web app running


Next: Install and configure service-catalog