Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 464 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 464 Bytes

kubeplayground

This repo exists to support replicating godaddy/terminus#31

Playground for NodeJS + Kubernetes

Install Docker for Mac with Kubernetes

Create deployment:

kubectl create -f deployment.yaml

Expose deployment:

kubectl expose deployment hello-node --type=LoadBalancer

Deploy/update app:

./update

Load test:

wrk -d 2m http://localhost:8080/ -H 'Connection: Close'