Add missing `systemctl` step for running `cri-o` (#17926)

After installing `cri-o`, we must run `systemctl daemon-reload` before
trying to run `systemctl start crio`. Otherwise, `systemd` doesn't know
about the crio configuration.

Similar instructions already exist for installing docker - this diff
adds these instructions for crio.
This commit is contained in:
Matt McNaughton 2019-12-03 09:00:57 -05:00 committed by Kubernetes Prow Robot
parent 29ca5ea07b
commit 832371281d
1 changed files with 1 additions and 0 deletions

View File

@ -200,6 +200,7 @@ yum install --nogpgcheck cri-o
### Start CRI-O
```
systemctl daemon-reload
systemctl start crio
```