Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit 45949ce

Browse files
committed
fix USE_KUBE_UI and BOX_TIMEOUT_COUNT
1 parent 493d6d8 commit 45949ce

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Vagrantfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,10 @@ DNS_DOMAIN = ENV["DNS_DOMAIN"] || "cluster.local"
121121

122122
SERIAL_LOGGING = (ENV["SERIAL_LOGGING"].to_s.downcase == "true")
123123
GUI = (ENV["GUI"].to_s.downcase == "true")
124-
USE_KUBE_UI = ENV["USE_KUBE_UI"] || false
124+
USE_KUBE_UI = (ENV["USE_KUBE_UI"].to_s.downcase == "true") || false
125125
USE_METRICS_SERVER = (ENV["USE_METRICS_SERVER"].to_s.downcase == "true") || false
126126

127-
BOX_TIMEOUT_COUNT = ENV["BOX_TIMEOUT_COUNT"] || 50
128-
BOX_TIMEOUT_COUNT = BOX_TIMEOUT_COUNT.to_i
127+
BOX_TIMEOUT_COUNT = (ENV["BOX_TIMEOUT_COUNT"] || 50).to_i
129128

130129
if enable_proxy
131130
HTTP_PROXY = ENV["HTTP_PROXY"] || ENV["http_proxy"]

0 commit comments

Comments
 (0)