summaryrefslogtreecommitdiff
path: root/RELEASE_NOTES.md
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2017-09-11 10:52:12 -0700
committerTim Smith <tsmith@chef.io>2017-09-11 10:58:18 -0700
commitf48ce49708cf007f92b12159c9c801e8357fe29d (patch)
tree42747e55c3c032c8334637960d838250081d1b57 /RELEASE_NOTES.md
parent6fbe116aa8ed4ec82be2234172089c1c51487947 (diff)
downloadchef-f48ce49708cf007f92b12159c9c801e8357fe29d.tar.gz
Pull in Ohai 13.4 and InSpec 1.36.1ohai_134
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'RELEASE_NOTES.md')
-rw-r--r--RELEASE_NOTES.md76
1 files changed, 75 insertions, 1 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 25572998bf..fcae039628 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -10,7 +10,7 @@ Chef Client 13.4 includes RubyGems 2.6.13 to fix the following CVEs:
* CVE-2017-0901
* CVE-2017-0902
-# Ifconfig provider on Red Hat now supports additional properties
+## Ifconfig provider on Red Hat now supports additional properties
It is now possible to set `ETHTOOL_OPTS`, `BONDING_OPTS`, `MASTER` and
`SLAVE` properties on interfaces on Red Hat compatible systems. See https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Deployment_Guide/s1-networkscripts-interfaces.html for further information
@@ -140,6 +140,80 @@ windows_path 'C:\7-Zip' do
end
```
+## Ohai Release Notes 13.4
+
+### Windows EC2 Detection
+
+Detection of nodes running in EC2 has been greatly improved and should now detect nodes 100% of the time including nodes that have been migrated to EC2 or were built with custom AMIs.
+
+### Azure Metadata Endpoint Detection
+
+Ohai now polls the new Azure metadata endpoint, giving us additional configuration details on nodes running in Azure
+
+Sample data now available under azure:
+
+```javascript
+{
+ "metadata": {
+ "compute": {
+ "location": "westus",
+ "name": "timtest",
+ "offer": "UbuntuServer",
+ "osType": "Linux",
+ "platformFaultDomain": "0",
+ "platformUpdateDomain": "0",
+ "publisher": "Canonical",
+ "sku": "17.04",
+ "version": "17.04.201706191",
+ "vmId": "8d523242-71cf-4dff-94c3-1bf660878743",
+ "vmSize": "Standard_DS1_v2"
+ },
+ "network": {
+ "interfaces": {
+ "000D3A33AF03": {
+ "mac": "000D3A33AF03",
+ "public_ipv6": [
+
+ ],
+ "public_ipv4": [
+ "52.160.95.99",
+ "23.99.10.211"
+ ],
+ "local_ipv6": [
+
+ ],
+ "local_ipv4": [
+ "10.0.1.5",
+ "10.0.1.4",
+ "10.0.1.7"
+ ]
+ }
+ },
+ "public_ipv4": [
+ "52.160.95.99",
+ "23.99.10.211"
+ ],
+ "local_ipv4": [
+ "10.0.1.5",
+ "10.0.1.4",
+ "10.0.1.7"
+ ],
+ "public_ipv6": [
+
+ ],
+ "local_ipv6": [
+
+ ]
+ }
+ }
+}
+```
+
+### Package Plugin Supports Arch Linux
+
+The Package plugin has been updated to include package information on Arch Linux systems.
+
+
# Chef Client Release Notes 13.3:
## Unprivileged Symlink Creation on Windows