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 --control-plane-endpoint=""
45 Specify a stable IP address or DNS name for the control plane.
46
47
48 --controller-manager-extra-args=
49 A set of extra flags to pass to the Controller Manager or override
50 default ones in form of <flagname>=<value>
51
52
53 -k, --experimental-kustomize=""
54 The path where kustomize patches for static pod manifests are
55 stored.
56
57
58 --feature-gates=""
59 A set of key=value pairs that describe feature gates for various
60 features. Options are: IPv6DualStack=true|false (ALPHA - default=false)
61 PublicKeysECDSA=true|false (ALPHA - default=false)
62
63
64 --image-repository="k8s.gcr.io"
65 Choose a container registry to pull control plane images from
66
67
68 --kubernetes-version="stable-1"
69 Choose a specific Kubernetes version for the control plane.
70
71
72 --pod-network-cidr=""
73 Specify range of IP addresses for the pod network. If set, the
74 control plane will automatically allocate CIDRs for every node.
75
76
77 --scheduler-extra-args=
78 A set of extra flags to pass to the Scheduler or override default
79 ones in form of <flagname>=<value>
80
81
82 --service-cidr="10.96.0.0/12"
83 Use alternative range of IP address for service VIPs.
84
85
86
88 --azure-container-registry-config=""
89 Path to the file containing Azure container registry configuration
90 information.
91
92
93 --log-flush-frequency=5s
94 Maximum number of seconds between log flushes
95
96
97 --rootfs=""
98 [EXPERIMENTAL] The path to the 'real' host root filesystem.
99
100
101 --version=false
102 Print version information and quit
103
104
105
107 # Generates all static Pod manifest files for control plane components,
108 # functionally equivalent to what is generated by kubeadm init.
109 kubeadm init phase control-plane all
110
111 # Generates all static Pod manifest files using options read from a configuration file.
112 kubeadm init phase control-plane all --config config.yaml
113
114
115
116
118 kubeadm-init-phase-control-plane(1),
119
120
121
123 January 2015, Originally compiled by Eric Paris (eparis at redhat dot
124 com) based on the kubernetes source material, but hopefully they have
125 been automatically generated since!
126
127
128
129Eric Paris kubernetes User Manuals KUBERNETES(1)