From 6a86fc64fa9dd725286c48d7be5ec5ee092fafb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Greg=20Kar=C3=A9kinian?= Date: Tue, 17 Apr 2018 13:42:38 +0200 Subject: [PATCH] Add configuration for knife-solo Disable Berkshelf integration and set the version of Chef to install on the server --- .chef/knife.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.chef/knife.rb b/.chef/knife.rb index f307d82..c8d218b 100644 --- a/.chef/knife.rb +++ b/.chef/knife.rb @@ -11,3 +11,9 @@ local_mode true # Chef local mode, replacing Solo cookbook_copyright 'Kosmos' cookbook_license 'none' cookbook_email 'mail@kosmos.org' + +# Disable knife-solo's Berkshelf integration, since we vendor all third party +# cookbooks +knife[:berkshelf] = false +# Set Chef version installed by `knife solo prepare` +knife[:bootstrap_version] = "13.8.5"