diff options
| author | Giuseppe Scrivano <gscrivan@redhat.com> | 2017-10-04 19:57:15 +0200 | 
|---|---|---|
| committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2017-10-06 16:48:14 +0200 | 
| commit | efd87ce407c81376120158a0239075f1e053707d (patch) | |
| tree | 50c609f6cc8cd413cb798f9da55c53467d988d1f /roles | |
| parent | e7e82bede0f7ebac08a4290a3f088cca0ea3ab78 (diff) | |
| download | openshift-efd87ce407c81376120158a0239075f1e053707d.tar.gz openshift-efd87ce407c81376120158a0239075f1e053707d.tar.bz2 openshift-efd87ce407c81376120158a0239075f1e053707d.tar.xz openshift-efd87ce407c81376120158a0239075f1e053707d.zip  | |
cri-o: use overlay instead of overlay2
overlay2 and overlay are the same driver.  Upstream CRI-O is going to
drop any reference to overlay2 and use only overlay.
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/docker/templates/crio.conf.j2 | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/docker/templates/crio.conf.j2 b/roles/docker/templates/crio.conf.j2 index b4ee84fd0..e0b951af3 100644 --- a/roles/docker/templates/crio.conf.j2 +++ b/roles/docker/templates/crio.conf.j2 @@ -13,12 +13,12 @@ runroot = "/var/run/containers/storage"  # storage_driver select which storage driver is used to manage storage  # of images and containers. -storage_driver = "overlay2" +storage_driver = "overlay"  # storage_option is used to pass an option to the storage driver.  storage_option = [  {% if ansible_distribution in ['RedHat', 'CentOS'] %} -	"overlay2.override_kernel_check=1" +	"overlay.override_kernel_check=1"  {% endif %}  ]  | 
