From 100d972cea7fe902ce48b8a7eb81afdf55efa924 Mon Sep 17 00:00:00 2001
From: Lucas Melchior <switchboard.op@gmail.com>
Date: Wed, 26 Dec 2018 00:55:17 -0600
Subject: [PATCH] Updated cri-o documentation (#3878)

---
 docs/cri-o.md | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/docs/cri-o.md b/docs/cri-o.md
index 8004f5cc2..9ec9b5b68 100644
--- a/docs/cri-o.md
+++ b/docs/cri-o.md
@@ -1,28 +1,28 @@
-cri-o
+CRI-O
 ===============
 
-cri-o is container developed by kubernetes project.
-Currently, only basic function is supported for cri-o.
+[CRI-O] is a lightweight container runtime for Kubernetes.
+Kubespray supports basic functionality for using CRI-O as the default container runtime in a cluster.
 
-* cri-o is supported kubernetes 1.11.1 or later.
-* helm and other feature may not be supported due to docker dependency.
-* scale.yml and upgrade-cluster.yml are not supported.
+* Kubernetes supports CRI-O on v1.11.1 or later.
+* Helm and other tools may not function as normal due to dependency on Docker.
+* `scale.yml` and `upgrade-cluster.yml` are not supported on clusters using CRI-O.
 
-helm and other feature may not be supported due to docker dependency.
-
-Use cri-o instead of docker, set following variable:
+_To use CRI-O instead of Docker, set the following variables:_
 
 #### all.yml
 
-```
+```yaml
 download_container: false
 skip_downloads: false
 ```
 
 #### k8s-cluster.yml
 
-```
+```yaml
 etcd_deployment_type: host
 kubelet_deployment_type: host
 container_manager: crio
 ```
+
+[CRI-O]: https://cri-o.io/
-- 
GitLab