1KUBERNETES(1) Jan 2015 KUBERNETES(1)
2
3
4
6 kubeadm init phase control-plane all - Generate all static Pod manifest
7 files
8
9
10
12 kubeadm init phase control-plane all [OPTIONS]
13
14
15
17 Generate all static Pod manifest files
18
19
20
22 --apiserver-advertise-address=""
23 The IP address the API Server will advertise it's listening on. If
24 not set the default network interface will be used.
25
26
27 --apiserver-bind-port=6443
28 Port for the API Server to bind to.
29
30
31 --apiserver-extra-args=
32 A set of extra flags to pass to the API Server or override default
33 ones in form of <flagname>=<value>
34
35
36 --cert-dir="/etc/kubernetes/pki"
37 The path where to save and store the certificates.
38
39
40 --config=""
41 Path to a kubeadm configuration file.
42
43
44 --controller-manager-extra-args=
45 A set of extra flags to pass to the Controller Manager or override
46 default ones in form of <flagname>=<value>
47
48
49 --feature-gates=""
50 A set of key=value pairs that describe feature gates for various
51 features. No feature gates are available in this release.
52
53
54 --image-repository="k8s.gcr.io"
55 Choose a container registry to pull control plane images from
56
57
58 --kubernetes-version="stable-1"
59 Choose a specific Kubernetes version for the control plane.
60
61
62 --pod-network-cidr=""
63 Specify range of IP addresses for the pod network. If set, the con‐
64 trol plane will automatically allocate CIDRs for every node.
65
66
67 --scheduler-extra-args=
68 A set of extra flags to pass to the Scheduler or override default
69 ones in form of <flagname>=<value>
70
71
72 --service-cidr="10.96.0.0/12"
73 Use alternative range of IP address for service VIPs.
74
75
76
78 --azure-container-registry-config=""
79 Path to the file containing Azure container registry configuration
80 information.
81
82
83 --log-flush-frequency=5s
84 Maximum number of seconds between log flushes
85
86
87 --rootfs=""
88 [EXPERIMENTAL] The path to the 'real' host root filesystem.
89
90
91 --version=false
92 Print version information and quit
93
94
95
97 # Generates all static Pod manifest files for control plane components,
98 # functionally equivalent to what is generated by kubeadm init.
99 kubeadm init phase control-plane all
100
101 # Generates all static Pod manifest files using options read from a configuration file.
102 kubeadm init phase control-plane all --config config.yaml
103
104
105
106
108 kubeadm-init-phase-control-plane(1),
109
110
111
113 January 2015, Originally compiled by Eric Paris (eparis at redhat dot
114 com) based on the kubernetes source material, but hopefully they have
115 been automatically generated since!
116
117
118
119Eric Paris kubernetes User Manuals KUBERNETES(1)