@@ -12,19 +12,16 @@ toc::[]
12
12
13
13
== Customizing master and node configuration after installation
14
14
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].
28
25
These files define options including overriding the default plug-ins, connecting
29
26
to etcd, automatically creating service accounts, building image names,
30
27
customizing project requests, configuring volume plug-ins, and much more.
@@ -76,7 +73,7 @@ in the configuration files] themselves.
76
73
[NOTE]
77
74
====
78
75
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.
80
77
====
81
78
82
79
endif::openshift-origin[]
@@ -290,7 +287,7 @@ xref:../install_config/master_node_configuration.adoc#node-configuration-files[n
290
287
[NOTE]
291
288
====
292
289
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.
294
291
====
295
292
296
293
[[master-configuration-files]]
@@ -1069,7 +1066,7 @@ dnsConfig:
1069
1066
1070
1067
|`*MasterClientConnectionOverrides*`
1071
1068
|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
1073
1070
xref:#master-node-configuration-node-qps-burst[Setting Node QPS and Burst Values].
1074
1071
1075
1072
|`*MaxRequestsInFlight*`
@@ -1540,7 +1537,7 @@ include::scaling_performance/host_practices.adoc[tag=node-qps-burst]
1540
1537
| Parameter Name | Description
1541
1538
1542
1539
|`*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`.
1544
1541
1545
1542
|`*kube-api-burst*`
1546
1543
|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
1566
1563
parallel pulls.
1567
1564
====
1568
1565
1569
- ====
1570
1566
[source,yaml]
1571
1567
----
1572
1568
kubeletArguments:
1573
1569
serialize-image-pulls:
1574
1570
- "false" <1>
1575
1571
----
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.
1578
1573
1579
1574
[[master-node-configuration-passwords-and-other-data]]
1580
1575
== Passwords and Other Sensitive Data
@@ -1588,31 +1583,27 @@ or in encrypted files.
1588
1583
.Environment Variable Example
1589
1584
[source,yaml]
1590
1585
----
1591
- ...
1592
1586
bindPassword:
1593
1587
env: BIND_PASSWORD_ENV_VAR_NAME
1594
1588
----
1595
1589
1596
1590
.External File Example
1597
1591
[source,yaml]
1598
1592
----
1599
- ...
1600
1593
bindPassword:
1601
1594
file: bindPassword.txt
1602
1595
----
1603
1596
1604
1597
.Encrypted External File Example
1605
1598
[source,yaml]
1606
1599
----
1607
- ...
1608
1600
bindPassword:
1609
1601
file: bindPassword.encrypted
1610
1602
keyFile: bindPassword.key
1611
1603
----
1612
1604
1613
1605
To create the encrypted file and key file for the above example:
1614
1606
1615
- [options="nowrap"]
1616
1607
----
1617
1608
$ oc adm ca encrypt --genkey=bindPassword.key --out=bindPassword.encrypted
1618
1609
> Data to encrypt: B1ndPass0rd!
@@ -1650,23 +1641,20 @@ is recommended to not make them greater than these values.
1650
1641
To create configuration files for an all-in-one server (a master and a node on
1651
1642
the same host) in the specified directory:
1652
1643
1653
- [options="nowrap"]
1654
1644
----
1655
1645
$ openshift start --write-config=/openshift.local.config
1656
1646
----
1657
1647
1658
1648
To create a xref:master-configuration-files[master configuration file] and
1659
1649
other required files in the specified directory:
1660
1650
1661
- [options="nowrap"]
1662
1651
----
1663
1652
$ openshift start master --write-config=/openshift.local.config/master
1664
1653
----
1665
1654
1666
1655
To create a xref:node-configuration-files[node configuration file] and other
1667
1656
related files in the specified directory:
1668
1657
1669
- [options="nowrap"]
1670
1658
----
1671
1659
$ oc adm create-node-config \
1672
1660
--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
1684
1672
certificates to be valid for.
1685
1673
1686
1674
[[launching-servers-using-configuration-files]]
1687
-
1688
1675
== 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
1690
1678
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.
1693
1681
1694
1682
[NOTE]
1695
1683
====
1696
1684
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.
1698
1686
====
1699
1687
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
+ +
1704
1690
----
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
1706
1693
----
1707
1694
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
+ +
1711
1698
----
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
1713
1702
----
1714
1703
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
+ +
1718
1706
----
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)
1720
1710
----
1721
1711
1722
1712
[[master-node-view-logs]]
1723
1713
== Viewing Master and Node Logs
1724
1714
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.
1726
1718
1727
1719
[NOTE]
1728
1720
====
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.
1731
1723
====
1732
1724
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:
1734
1727
1735
1728
.Log Level Options
1736
1729
[cols="3a,6a",options="header"]
@@ -1784,11 +1777,17 @@ master-logs api api 2> file
1784
1777
[[master-node-config-logging-levels]]
1785
1778
=== Configuring Logging Levels
1786
1779
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.
1788
1786
1789
1787
[NOTE]
1790
1788
====
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.
1792
1791
====
1793
1792
1794
1793
To change the logging level:
@@ -1969,7 +1968,6 @@ W1022 15:12:00.256861 1 swagger.go:38] No API exists for predefined swagge
1969
1968
W1022 15:12:00.258106 1 swagger.go:38] No API exists for predefined swagger description /api/v1
1970
1969
----
1971
1970
1972
-
1973
1971
[[master-node-config-restart-services]]
1974
1972
== Restarting master and node services
1975
1973
0 commit comments