From d270ff0fb3e600fb60c617397cb5744224790a9d Mon Sep 17 00:00:00 2001 From: beth wright Date: Tue, 13 Mar 2018 08:56:41 -0700 Subject: [PATCH 1/2] docs: disable swap before starting kubelet --- Documentation/install/rhel/installing-workers.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Documentation/install/rhel/installing-workers.md b/Documentation/install/rhel/installing-workers.md index 2b8137c..564f5c6 100644 --- a/Documentation/install/rhel/installing-workers.md +++ b/Documentation/install/rhel/installing-workers.md @@ -151,7 +151,13 @@ Clock synchronization is important for Tectonic, as it relies heavily on TLS cer ### Enable and start the service -This process is the same as with all systemd hosts. The service as installed by the `tectonic-worker` RPM is called `kubelet`. It can be started with the command: +This process is the same as with all systemd hosts. The service as installed by the `tectonic-worker` RPM is called `kubelet`. First, disable swapping on the RHEL operating system: + +``` +sudo swapoff -a +``` + +Then start the kubelet: ``` $ sudo systemctl start kubelet.service From 05548a2ca2d84478dd7bc25412babd5e75ca7960 Mon Sep 17 00:00:00 2001 From: Rob Szumski Date: Tue, 13 Mar 2018 09:02:37 -0700 Subject: [PATCH 2/2] add dollar sign --- Documentation/install/rhel/installing-workers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/install/rhel/installing-workers.md b/Documentation/install/rhel/installing-workers.md index 564f5c6..00cb52c 100644 --- a/Documentation/install/rhel/installing-workers.md +++ b/Documentation/install/rhel/installing-workers.md @@ -154,7 +154,7 @@ Clock synchronization is important for Tectonic, as it relies heavily on TLS cer This process is the same as with all systemd hosts. The service as installed by the `tectonic-worker` RPM is called `kubelet`. First, disable swapping on the RHEL operating system: ``` -sudo swapoff -a +$ sudo swapoff -a ``` Then start the kubelet: