Changed default container engine to crio (#217)

Vagrant file also sets a default container engine and runs
setup_system.sh. This was currently setting runner=containerd if RUNNER
environment variable was not set, I changed default to crio

Closes issue #216

Signed-off-by: Craig Sterrett <craig.sterrett@intel.com>
This commit is contained in:
CraigSterrett
2019-10-14 09:18:30 -07:00
committed by GitHub
parent d557bfe559
commit 8d0caf2dee
+1 -1
View File
@@ -21,7 +21,7 @@ $hosts = {}
$proxy_ip_list = "192.168.121.0/24"
$driveletters = ('a'..'z').to_a
$setup_fc = true ? (['true', '1'].include? ENV['SETUP_FC'].to_s) : false
$runner = ENV.has_key?('RUNNER') ? ENV['RUNNER'].to_s : "containerd".to_s
$runner = ENV.has_key?('RUNNER') ? ENV['RUNNER'].to_s : "crio".to_s
$high_pod_count = ENV.has_key?('HIGH_POD_COUNT') ? ENV['HIGH_POD_COUNT'].to_s : ""
if !(["crio","containerd"].include? $runner)
abort("it's either crio or containerd. Cannot do anything else")