Skip to content
This repository was archived by the owner on Feb 5, 2020. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Documentation/install/rhel/installing-workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down