How to find out if gke cluster has autoupgrade set

10/22/2019

As google states:

In November 2019, node auto-upgrade will be enabled by default for newly created clusters and node pools. To disable it, use the --no-enable-autoupgrade flag

How can I check if an already existing cluster (or node-pool) has this currently activated?


Edit: As Adebisi states it can be found using: gcloud container clusters describe [cluster] or gcloud container node-pools describe [node-pool] --cluster=[cluster]

However the result will only contain the entry management.autoUpgrade if it is actually set to true. An alternative is using the google console web UI.

-- user2887278
gcloud
google-kubernetes-engine

1 Answer

10/22/2019

This documentation provides the steps to check if autoupgrade is enabled.

-- Adebisi
Source: StackOverflow