summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan McLellan <btm@getchef.com>2014-05-15 08:06:22 -0700
committerBryan McLellan <btm@getchef.com>2014-05-15 08:06:22 -0700
commit26ad28cb4b4c8d2ba99c9d60622ed99194bca908 (patch)
treef51ac8b26319226b942c4b705cf9a0998eb84224
parent373d1893837eaae56c2c37e942004097f06a861b (diff)
downloadohai-26ad28cb4b4c8d2ba99c9d60622ed99194bca908.tar.gz
OHAI-573: Release notes
-rw-r--r--CHANGELOG.md1
-rw-r--r--RELEASE_NOTES.md13
2 files changed, 13 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e28f8cd6..86f18380 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,7 @@
* EC2 metadata errors are unhelpful (OHAI-566)
* Support deep virtualization systems in node[:virtualization][:systems] (OHAI-182)
* :Passwd plugin now ignores duplicate users. (OHAI-561)
+* Be reluctant to call something an LXC host (OHAI-573)
## Last Release: 7.0.0 (04/01/2014)
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 9f575b12..4993e662 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -9,6 +9,17 @@ Details about the thing that changed that needs to get included in the Release N
# Ohai Release Notes:
Chained virtualization systems, such as containers running on virtual machines, can now be tracked in
-node[:virtualization][:systems].
+node[:virtualization][:systems]. This is in addition to the former system under node[:virtualization][:role] and
+node[:virtualization][:system]. For example, a node could have all of these attributes at once:
+
+```
+node[:virtualization][:system] = "vmware"
+node[:virtualization][:role] = "guest"
+node[:virtualization][:systems][:lxc] = "host"
+node[:virtualization][:systems][:vmware] = "guest"
+```
+
+Due to the requirements for being an LXC host being easily fulfilled, we only
+populate the old system (role & system) with LXC if there are no other virtualization systems detected.
# Ohai Breaking Changes: