summaryrefslogtreecommitdiff
path: root/habitat/default.toml
diff options
context:
space:
mode:
authorElliott Davis <edavis@chef.io>2017-05-01 16:48:42 -0500
committerThom May <thom@chef.io>2018-05-02 14:57:37 +0100
commitf60781bbfe16a23078c22dced4ed968fe4e26ec3 (patch)
tree596e7ab16e5c2eb2c017786c8a585c88976dff42 /habitat/default.toml
parent21dcbdd200d69725845f75b6b8bebe1ec950e826 (diff)
downloadchef-f60781bbfe16a23078c22dced4ed968fe4e26ec3.tar.gz
Update Habitat plan to correctly build
* Add a few config new settings Signed-off-by: Elliott Davis <edavis@chef.io>
Diffstat (limited to 'habitat/default.toml')
-rw-r--r--habitat/default.toml45
1 files changed, 38 insertions, 7 deletions
diff --git a/habitat/default.toml b/habitat/default.toml
index 04385fc371..38b33210f9 100644
--- a/habitat/default.toml
+++ b/habitat/default.toml
@@ -1,11 +1,42 @@
-# The Chef run interval in seconds
-interval = 10
+cookbook_path = "chef/cookbooks"
+data_bag_bath = "chef/data_bags"
+environment_path = "chef/environments"
+file_backup_path = "chef/backup"
+file_cache_path = "chef/cache"
+node_path = "chef/node"
+role_path = "chef/roles"
-# The splay
-splay = 10
+pid_file = "chef.pid"
+run_list = ""
+
+# The location in which nodes are stored when the chef-client is run in local mode
-# The default log level
+log_location = "STDOUT"
+
+# The level of logging to be stored in a log file
log_level = "info"
-# The default run list
-run_list = ""
+# A random number between zero and splay that is added to interval
+splay = 10
+
+# The frequency (in seconds) at which the chef-client runs
+interval = 10
+
+minimal_ohai = false
+
+# The name of the node. Determines which configuration should be applied and sets the client_name,
+# which is the name used when authenticating to a Chef server. The default value is the FQDN of the chef-client,
+#as detected by Ohai. In general, Chef recommends that you leave this setting blank and let Ohai
+# assign the FQDN of the node as the node_name during each chef-clientrun.
+node_name = ""
+
+#The name of the environment
+environment = "_default"
+
+use_member_id_as_uuid = false
+
+[data_collector]
+url="http://localhost/data-collector/v0/"
+token="93a49a4f2482c64126f7b6015e6b0f30284287ee4054ff8807fb63d9cbd1c506"
+raise_on_failure=false
+mode="both"