update deploy and readme

This commit is contained in:
ducoterra
2020-06-17 12:29:16 -04:00
parent e93eec782e
commit 5caa4ede71
4 changed files with 24 additions and 5 deletions

19
README.md Normal file
View File

@@ -0,0 +1,19 @@
# Temperature monitoring and stress testing
## Temperature
```bash
kubectl exec -it $(kubectl get pod --selector=app=temp --output=jsonpath={.items..metadata.name}) -- watch -n1 sensors
```
## CPU Throttling
```bash
kubectl exec -it $(kubectl get pod --selector=app=temp --output=jsonpath={.items..metadata.name}) -- watch -n1 lscpu
```
## Stress
```bash
kubectl exec -it $(kubectl get pod --selector=app=temp --output=jsonpath={.items..metadata.name}) -- stress -c 24
```