Skip to content

Commit 77148a3

Browse files
committed
Update 3.11 for openshift start / hyperkube changes
1 parent 12fdd8b commit 77148a3

File tree

1 file changed

+50
-52
lines changed

1 file changed

+50
-52
lines changed

install_config/master_node_configuration.adoc

+50-52
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,16 @@ toc::[]
1212

1313
== Customizing master and node configuration after installation
1414

15-
The `openshift start` command and its subcommands (`master` to launch a
16-
xref:../architecture/infrastructure_components/kubernetes_infrastructure.adoc#master[master
17-
server] and `node` to launch a
18-
xref:../architecture/infrastructure_components/kubernetes_infrastructure.adoc#node[node
19-
server]) take a limited set of arguments that are sufficient for launching
20-
servers in a development or experimental environment.
21-
22-
However, these arguments are insufficient to describe and control the full set
23-
of configuration and security options that are necessary in a production
24-
environment. You must provide those options in the xref:../architecture/infrastructure_components/kubernetes_infrastructure.adoc#master[Master
25-
host files], at *_/etc/origin/master/master-config.yaml_*
26-
and the xref:../admin_guide/manage_nodes.adoc#modifying-nodes[node configuration maps]:
27-
15+
The `openshift start` command (for master servers) and `hyperkube` command (for
16+
node servers) take a limited set of arguments that are sufficient for launching
17+
servers in a development or experimental environment. However, these arguments
18+
are insufficient to describe and control the full set of configuration and
19+
security options that are necessary in a production environment.
20+
21+
You must provide these options in the
22+
xref:../architecture/infrastructure_components/kubernetes_infrastructure.adoc#master[master configuration file],
23+
at *_/etc/origin/master/master-config.yaml_*, and the
24+
xref:../admin_guide/manage_nodes.adoc#modifying-nodes[node configuration maps].
2825
These files define options including overriding the default plug-ins, connecting
2926
to etcd, automatically creating service accounts, building image names,
3027
customizing project requests, configuring volume plug-ins, and much more.
@@ -76,7 +73,7 @@ in the configuration files] themselves.
7673
[NOTE]
7774
====
7875
To modify a node in your cluster, update the xref:../admin_guide/manage_nodes.adoc#modifying-nodes[node configuration maps] as needed.
79-
Do not manually edit the `node-config.yaml` file.
76+
Do not manually edit the *_node-config.yaml_* file.
8077
====
8178

8279
endif::openshift-origin[]
@@ -290,7 +287,7 @@ xref:../install_config/master_node_configuration.adoc#node-configuration-files[n
290287
[NOTE]
291288
====
292289
To modify a node in your cluster, update the xref:../admin_guide/manage_nodes.adoc#modifying-nodes[node configuration maps] as needed.
293-
Do not manually edit the `node-config.yaml` file.
290+
Do not manually edit the *_node-config.yaml_* file.
294291
====
295292

296293
[[master-configuration-files]]
@@ -1069,7 +1066,7 @@ dnsConfig:
10691066

10701067
|`*MasterClientConnectionOverrides*`
10711068
|Provides overrides to the client connection used to connect to the master.
1072-
This parameter is not supported. To set QPS and burst values, see
1069+
This parameter is not supported. To set QPS and burst values, see
10731070
xref:#master-node-configuration-node-qps-burst[Setting Node QPS and Burst Values].
10741071

10751072
|`*MaxRequestsInFlight*`
@@ -1540,7 +1537,7 @@ include::scaling_performance/host_practices.adoc[tag=node-qps-burst]
15401537
| Parameter Name | Description
15411538

15421539
|`*kube-api-qps*`
1543-
|The QPS rate at which the Kubelet talks to the APIServer. The default is `20`.
1540+
|The QPS rate at which the Kubelet talks to the APIServer. The default is `20`.
15441541

15451542
|`*kube-api-burst*`
15461543
|The burst rate at which the Kubelet talks to the APIServer. The default is `40`.
@@ -1566,15 +1563,13 @@ starting with 1.9, the corruption issue is resolved and it is safe to switch to
15661563
parallel pulls.
15671564
====
15681565

1569-
====
15701566
[source,yaml]
15711567
----
15721568
kubeletArguments:
15731569
serialize-image-pulls:
15741570
- "false" <1>
15751571
----
1576-
<1> Change to true to disable parallel pulls. (This is the default config)
1577-
====
1572+
<1> Change to `true` to disable parallel pulls. This is the default configuration.
15781573

15791574
[[master-node-configuration-passwords-and-other-data]]
15801575
== Passwords and Other Sensitive Data
@@ -1588,31 +1583,27 @@ or in encrypted files.
15881583
.Environment Variable Example
15891584
[source,yaml]
15901585
----
1591-
...
15921586
bindPassword:
15931587
env: BIND_PASSWORD_ENV_VAR_NAME
15941588
----
15951589

15961590
.External File Example
15971591
[source,yaml]
15981592
----
1599-
...
16001593
bindPassword:
16011594
file: bindPassword.txt
16021595
----
16031596

16041597
.Encrypted External File Example
16051598
[source,yaml]
16061599
----
1607-
...
16081600
bindPassword:
16091601
file: bindPassword.encrypted
16101602
keyFile: bindPassword.key
16111603
----
16121604

16131605
To create the encrypted file and key file for the above example:
16141606

1615-
[options="nowrap"]
16161607
----
16171608
$ oc adm ca encrypt --genkey=bindPassword.key --out=bindPassword.encrypted
16181609
> Data to encrypt: B1ndPass0rd!
@@ -1650,23 +1641,20 @@ is recommended to not make them greater than these values.
16501641
To create configuration files for an all-in-one server (a master and a node on
16511642
the same host) in the specified directory:
16521643

1653-
[options="nowrap"]
16541644
----
16551645
$ openshift start --write-config=/openshift.local.config
16561646
----
16571647

16581648
To create a xref:master-configuration-files[master configuration file] and
16591649
other required files in the specified directory:
16601650

1661-
[options="nowrap"]
16621651
----
16631652
$ openshift start master --write-config=/openshift.local.config/master
16641653
----
16651654

16661655
To create a xref:node-configuration-files[node configuration file] and other
16671656
related files in the specified directory:
16681657

1669-
[options="nowrap"]
16701658
----
16711659
$ oc adm create-node-config \
16721660
--node-dir=/openshift.local.config/node-<node_hostname> \
@@ -1684,53 +1672,58 @@ comma-delimited list of every host name or IP address you want server
16841672
certificates to be valid for.
16851673

16861674
[[launching-servers-using-configuration-files]]
1687-
16881675
== Launching Servers Using Configuration Files
1689-
Once you have modified the master and/or node configuration files to your
1676+
1677+
After you have modified the master and node configuration files to your
16901678
specifications, you can use them when launching servers by specifying them as an
1691-
argument. Keep in mind that if you specify a configuration file, none of the
1692-
other command line options you pass are respected.
1679+
argument. If you specify a configuration file, none of the other command line
1680+
options you pass are respected.
16931681

16941682
[NOTE]
16951683
====
16961684
To modify a node in your cluster, update the xref:../admin_guide/manage_nodes.adoc#modifying-nodes[node configuration maps] as needed.
1697-
Do not manually edit the `node-config.yaml` file.
1685+
Do not manually edit the *_node-config.yaml_* file.
16981686
====
16991687

1700-
To launch an all-in-one server using a master configuration and a node
1701-
configuration file:
1702-
1703-
[options="nowrap"]
1688+
. Launch a master server using a master configuration file:
1689+
+
17041690
----
1705-
$ openshift start --master-config=/openshift.local.config/master/master-config.yaml --node-config=/openshift.local.config/node-<node_hostname>/node-config.yaml
1691+
$ openshift start master \
1692+
--config=/openshift.local.config/master/master-config.yaml
17061693
----
17071694

1708-
To launch a master server using a master configuration file:
1709-
1710-
[options="nowrap"]
1695+
. Start the network proxy and SDN plug-ins using a node configuration file and a
1696+
*_node.kubeconfig_* file:
1697+
+
17111698
----
1712-
$ openshift start master --config=/openshift.local.config/master/master-config.yaml
1699+
$ openshift start network \
1700+
--config=/openshift.local.config/node-<node_hostname>/node-config.yaml \
1701+
--kubeconfig=/openshift.local.config/node-<node_hostname>/node.kubeconfig
17131702
----
17141703

1715-
To launch a node server using a node configuration file:
1716-
1717-
[options="nowrap"]
1704+
. Launch a node server using a node configuration file:
1705+
+
17181706
----
1719-
$ openshift start node --config=/openshift.local.config/node-<node_hostname>/node-config.yaml
1707+
$ hyperkube kubelet \
1708+
$(/usr/bin/openshift-node-config \
1709+
--config=/openshift.local.config/node-<node_hostname>/node-config.yaml)
17201710
----
17211711

17221712
[[master-node-view-logs]]
17231713
== Viewing Master and Node Logs
17241714

1725-
{product-title} collects log messages for debugging, using the `systemd-journald.service` for nodes and a script, called `master-logs`, for masters.
1715+
{product-title} collects log messages for debugging, using the
1716+
`systemd-journald.service` for nodes and a script, called `master-logs`, for
1717+
masters.
17261718

17271719
[NOTE]
17281720
====
1729-
The number of lines displayed in the web console is hard-coded at 5000 and cannot be changed.
1730-
To see the entire log, use the CLI.
1721+
The number of lines displayed in the web console is hard-coded at 5000 and
1722+
cannot be changed. To see the entire log, use the CLI.
17311723
====
17321724

1733-
The logging uses five log message severities based on Kubernetes logging conventions, as follows:
1725+
The logging uses five log message severities based on Kubernetes logging
1726+
conventions, as follows:
17341727

17351728
.Log Level Options
17361729
[cols="3a,6a",options="header"]
@@ -1784,11 +1777,17 @@ master-logs api api 2> file
17841777
[[master-node-config-logging-levels]]
17851778
=== Configuring Logging Levels
17861779

1787-
You can control which INFO messages are logged by setting the `DEBUG_LOGLEVEL` option in the in xref:../admin_guide/manage_nodes.adoc#modifying-nodes[node configuration files] or the */etc/origin/master/master.env* file. Configuring the logs to collect all messages can lead to large logs that are difficult to interpret and can take up excessive space. Only collect all messages when you need to debug your cluster.
1780+
You can control which INFO messages are logged by setting the `DEBUG_LOGLEVEL`
1781+
option in the *_/etc/origin/master/master.env_* file for the master or
1782+
*_/etc/sysconfig/atomic-openshift-node_* file for the nodes. Configuring the
1783+
logs to collect all messages can lead to large logs that are difficult to
1784+
interpret and can take up excessive space. Only collect all messages when you
1785+
need to debug your cluster.
17881786

17891787
[NOTE]
17901788
====
1791-
Messages with FATAL, ERROR, WARNING, and some INFO severities appear in the logs regardless of the log configuration.
1789+
Messages with FATAL, ERROR, WARNING, and some INFO severities appear in the logs
1790+
regardless of the log configuration.
17921791
====
17931792

17941793
To change the logging level:
@@ -1969,7 +1968,6 @@ W1022 15:12:00.256861 1 swagger.go:38] No API exists for predefined swagge
19691968
W1022 15:12:00.258106 1 swagger.go:38] No API exists for predefined swagger description /api/v1
19701969
----
19711970

1972-
19731971
[[master-node-config-restart-services]]
19741972
== Restarting master and node services
19751973

0 commit comments

Comments
 (0)