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 --log-flush-frequency=5s
49 Maximum number of seconds between log flushes
50
51
52 --rootfs=""
53 [EXPERIMENTAL] The path to the 'real' host root filesystem.
54
55
56 --version=false
57 Print version information and quit
58
59
60
62 # Downloads the kubelet configuration from the ConfigMap in the cluster. Uses a specific desired kubelet version.
63 kubeadm upgrade node config --kubelet-version v1.13.0
64
65 # Simulates the downloading of the kubelet configuration from the ConfigMap in the cluster with a specific desired
66 # version. Does not change any state locally on the node.
67 kubeadm upgrade node config --kubelet-version v1.13.0 --dry-run
68
69
70
71
73 kubeadm-upgrade-node(1),
74
75
76
78 January 2015, Originally compiled by Eric Paris (eparis at redhat dot
79 com) based on the kubernetes source material, but hopefully they have
80 been automatically generated since!
81
82
83
84Eric Paris kubernetes User Manuals KUBERNETES(1)