1KUBERNETES(1) Jan 2015 KUBERNETES(1)
2
3
4
6 kubeadm upgrade node config - Downloads the kubelet configuration from
7 the cluster ConfigMap kubelet-config-1.X, where X is the minor version
8 of the kubelet.
9
10
11
13 kubeadm upgrade node config [OPTIONS]
14
15
16
18 Downloads the kubelet configuration from a ConfigMap of the form
19 "kubelet-config-1.X" in the cluster, where X is the minor version of
20 the kubelet. kubeadm uses the --kubelet-version parameter to determine
21 what the desired kubelet version is. Give
22
23
24
26 --dry-run=false
27 Do not change any state, just output the actions that would be per‐
28 formed.
29
30
31 --kubeconfig="/etc/kubernetes/kubelet.conf"
32 The KubeConfig file to use when talking to the cluster. If the flag
33 is not set, a set of standard locations are searched for an existing
34 KubeConfig file.
35
36
37 --kubelet-version=""
38 The desired version for the kubelet after the upgrade.
39
40
41
43 --azure-container-registry-config=""
44 Path to the file containing Azure container registry configuration
45 information.
46
47
48 --google-json-key=""
49 The Google Cloud Platform Service Account JSON Key to use for
50 authentication.
51
52
53 --log-flush-frequency=5s
54 Maximum number of seconds between log flushes
55
56
57 --rootfs=""
58 [EXPERIMENTAL] The path to the 'real' host root filesystem.
59
60
61 --version=false
62 Print version information and quit
63
64
65
67 # Downloads the kubelet configuration from the ConfigMap in the cluster. Uses a specific desired kubelet version.
68 kubeadm upgrade node config --kubelet-version v1.12.0
69
70 # Simulates the downloading of the kubelet configuration from the ConfigMap in the cluster with a specific desired
71 # version. Does not change any state locally on the node.
72 kubeadm upgrade node config --kubelet-version v1.12.0 --dry-run
73
74
75
76
78 kubeadm-upgrade-node(1),
79
80
81
83 January 2015, Originally compiled by Eric Paris (eparis at redhat dot
84 com) based on the kubernetes source material, but hopefully they have
85 been automatically generated since!
86
87
88
89Eric Paris kubernetes User Manuals KUBERNETES(1)