How to debug failed `kops update cluster`

3/13/2018

I had a working kops cluster. I deleted some unneeded igs and updated the cluster. Now kubectl won't connect to the cluster. I get the following error: Unable to connect to the server: dial tcp {ip} i/o timeout.

How do I go about debugging the issue?

-- limscoder
kops
kubernetes

1 Answer

5/31/2018

as a first step I would try to run it again with higher log level, there logs are really good. Note you probably want to redirect to a file ...

kops <whatever> -v 10 &> log.txt
-- kbry
Source: StackOverflow