From 1c1a7a77d1ca5a3501e0ee0c2361f8c01df73222 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Mon, 11 Sep 2017 10:02:05 -0700 Subject: Release Ohai 13.4 Signed-off-by: Tim Smith --- RELEASE_NOTES.md | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 73 insertions(+), 4 deletions(-) (limited to 'RELEASE_NOTES.md') diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 3bb93a73..aee885a2 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,76 @@ +# 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. + # Ohai Release Notes 13.3 ## Additional Platform Support @@ -7,10 +80,6 @@ Ohai now properly detects the [F5 Big-IP](https://www.f5.com/) platform and plat - platform: bigip - platform_family: rhel -### Package Plugin Supports Arch Linux - -The Package plugin has been updated to include package information on Arch Linux systems. - # Ohai Release Notes 13.2: Ohai 13.2 has been a fantastic release in terms of community involvement with new plugins, platform support, and critical bug fixes coming from community members. A huge thank you to msgarbossa, albertomurillo, jaymzh, and davide125 for their work. -- cgit v1.2.1