Minion->Node rename: docs/ machine names only, except gce/aws
This commit is contained in:
parent
a608d8c1bd
commit
77f62c05d2
|
|
@ -80,9 +80,9 @@ You can use this script to automate checking for failures, assuming your cluster
|
||||||
```sh
|
```sh
|
||||||
echo "" > output.txt
|
echo "" > output.txt
|
||||||
for i in {1..4}; do
|
for i in {1..4}; do
|
||||||
echo "Checking kubernetes-minion-${i}"
|
echo "Checking kubernetes-node-${i}"
|
||||||
echo "kubernetes-minion-${i}:" >> output.txt
|
echo "kubernetes-node-${i}:" >> output.txt
|
||||||
gcloud compute ssh "kubernetes-minion-${i}" --command="sudo docker ps -a" >> output.txt
|
gcloud compute ssh "kubernetes-node-${i}" --command="sudo docker ps -a" >> output.txt
|
||||||
done
|
done
|
||||||
grep "Exited ([^0])" output.txt
|
grep "Exited ([^0])" output.txt
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue