1KUBERNETES(1)               General Commands Manual              KUBERNETES(1)
2
3
4

NAME

6       kubelet - Processes a container manifest so the containers are launched
7       according to how they are described.
8
9
10

SYNOPSIS

12       kubelet [OPTIONS]
13
14
15

DESCRIPTION

17       The kubelet is the primary "node agent" that runs on each node. The
18       kubelet works in terms of a PodSpec. A PodSpec is a YAML or JSON object
19       that describes a pod. The kubelet takes a set of PodSpecs that are
20       provided through various mechanisms (primarily through the apiserver)
21       and ensures that the containers described in those PodSpecs are running
22       and healthy. The kubelet doesn't manage containers which were not
23       created by Kubernetes.
24
25
26       Other than from an PodSpec from the apiserver, there are three ways
27       that a container manifest can be provided to the Kubelet.
28
29
30       File: Path passed as a flag on the command line. Files under this path
31       will be monitored periodically for updates. The monitoring period is
32       20s by default and is configurable via a flag.
33
34
35       HTTP endpoint: HTTP endpoint passed as a parameter on the command line.
36       This endpoint is checked every 20 seconds (also configurable with a
37       flag).
38
39
40       HTTP server: The kubelet can also listen for HTTP and respond to a
41       simple API (underspec'd currently) to submit a new manifest.
42
43
44       kubelet [flags]
45
46
47

OPTIONS

49                --azure-container-registry-config string   Path to the file containing Azure container registry configuration information.
50
51
52
53       -h, --help                                     help for kubelet
54             --log-flush-frequency duration             Maximum number of
55       seconds between log flushes (default 5s)
56             --version version[=true]                   Print version
57       information and quit
58
59
60

EXAMPLES

62       /usr/bin/kubelet --logtostderr=true --v=0 --api_servers=
63http://127.0.0.1:8080⟩ --address=127.0.0.1 --port=10250
64       --hostname_override=127.0.0.1 --allow-privileged=false
65
66
67
68                            kubernetes User Manuals              KUBERNETES(1)
Impressum