1KUBERNETES(1)(kubernetes) KUBERNETES(1)(kubernetes)
2
3
4
5Eric Paris Jan 2015
6
7
9 kubeadm init phase etcd local - Generate the static Pod manifest file
10 for a local, single-node local etcd instance
11
12
13
15 kubeadm init phase etcd local [OPTIONS]
16
17
18
20 Generate the static Pod manifest file for a local, single-node local
21 etcd instance
22
23
24
26 --cert-dir="/etc/kubernetes/pki" The path where to save and store
27 the certificates.
28
29
30 --config="" Path to a kubeadm configuration file.
31
32
33 --dry-run=false Don't apply any changes; just output what would be
34 done.
35
36
37 --image-repository="registry.k8s.io" Choose a container registry
38 to pull control plane images from
39
40
41 --patches="" Path to a directory that contains files named "tar‐
42 get[suffix][+patchtype].extension". For example, "kube-apis‐
43 erver0+merge.yaml" or just "etcd.json". "target" can be one of "kube-
44 apiserver", "kube-controller-manager", "kube-scheduler", "etcd",
45 "kubeletconfiguration". "patchtype" can be one of "strategic", "merge"
46 or "json" and they match the patch formats supported by kubectl. The
47 default "patchtype" is "strategic". "extension" must be either "json"
48 or "yaml". "suffix" is an optional string that can be used to determine
49 which patches are applied first alpha-numerically.
50
51
52
54 --azure-container-registry-config="" Path to the file containing
55 Azure container registry configuration information.
56
57
58 --rootfs="" [EXPERIMENTAL] The path to the 'real' host root
59 filesystem.
60
61
62 --version=false Print version information and quit
63
64
65
67 # Generates the static Pod manifest file for etcd, functionally
68 # equivalent to what is generated by kubeadm init.
69 kubeadm init phase etcd local
70
71 # Generates the static Pod manifest file for etcd using options
72 # read from a configuration file.
73 kubeadm init phase etcd local --config config.yaml
74
75
76
77
79 kubeadm-init-phase-etcd(1),
80
81
82
84 January 2015, Originally compiled by Eric Paris (eparis at redhat dot
85 com) based on the kubernetes source material, but hopefully they have
86 been automatically generated since!
87
88
89
90Manuals User KUBERNETES(1)(kubernetes)