You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After you connect a cluster to Azure Arc, you can change the automatic upgrade selection by using the `az connectedk8s update` command and setting `--auto-upgrade` to either true or false.
41
41
42
+
> [!IMPORTANT]
43
+
> To change the automatic upgrade setting, you must use version 1.2.11 of the `connectedk8s` Azure CLI extension. We are working to enable this functionality in future releases.
44
+
>
45
+
> To ensure you are using this version, run the following commands:
46
+
>
47
+
> ```azurecli
48
+
> # remove existing extension
49
+
> az extension remove --name connectedk8s
50
+
>
51
+
> # add specific extension version
52
+
> az extension add --name connectedk8s --version 1.2.11
53
+
> ```
54
+
>
55
+
> Once you've adjusted the automatic upgrade selection, use the following command to revert back to the latest version of the extension:
56
+
>
57
+
> ```azurecli
58
+
> # remove existing extension
59
+
> az extension remove --name connectedk8s
60
+
>
61
+
> # add latest extension version
62
+
> az extension add --name connectedk8s
63
+
> ```
64
+
42
65
The following command turns automatic upgrade off for a connected cluster:
0 commit comments