summaryrefslogtreecommitdiff
path: root/habitat/default.toml
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-08-05 09:06:03 -0400
committerGitHub <noreply@github.com>2019-08-05 09:06:03 -0400
commitcf1227b676095082524f10c4b6cf2da79d62d93b (patch)
tree8ef0b2d53d3ca6cdcd119118f73727ec7dc5a519 /habitat/default.toml
parentd2f65c9ca6637d016932af37b69fc29607447773 (diff)
parent854cfe80e1daef3886d859125f4cd5270bdf8b54 (diff)
downloadchef-cf1227b676095082524f10c4b6cf2da79d62d93b.tar.gz
Merge pull request #8789 from chef/afiune/hab
Cleanup of habitat/plan.sh for chef-infra-client
Diffstat (limited to 'habitat/default.toml')
-rw-r--r--habitat/default.toml42
1 files changed, 42 insertions, 0 deletions
diff --git a/habitat/default.toml b/habitat/default.toml
new file mode 100644
index 0000000000..2bea08934b
--- /dev/null
+++ b/habitat/default.toml
@@ -0,0 +1,42 @@
+pid_file = "chef.pid"
+run_list = ""
+
+local_mode = true
+
+# Positive License Acceptance. See https://docs.chef.io/chef_license_accept.html
+chef_license = "donotaccept"
+
+# Path to the chef client config on disk. If blank, will default to the one built by habitat.
+config_path = ""
+
+# The location in which nodes are stored when the chef-client is run in local mode
+
+log_location = "STDOUT"
+
+# The level of logging to be stored in a log file
+log_level = "info"
+
+# 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"