Follow commands in master.sh
Follow commands in slave.sh
- Pod pod.yaml
- Service service.yaml
- Deployment deployment.yaml
- Replication Controller replicationController.yaml
- api api.yaml To check nodes
kubectl get nodes
To check the pod
kubectl get pods
To get information about pod
kubectl describe pod pod
- Heapster heapster.yaml
- hpa hpa.yaml
- custom metrics ./metrics-server
- metrics custom-metrics.yaml
kubectl describe hpa hpaName
kubectl run -i --tty load-generator --image=busybox /bin/sh
while true; do wget -q -O- IPAddress:PortANumber; done