- Community Home
- >
- Software
- >
- HPE OneView
- >
- Oneview - Clarification of Server Profile Templat...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-12-2017 08:02 AM
тАО07-12-2017 08:02 AM
What we have:
HPE Version: 3.00.05-0271823
BLC460C Gen9s
Hello,
I am looking for clarification regarding changes to the Server Profile Template. We would like to change the Firmware Baseline to another baseline. According to HPE 3.0 Userguide:
"When you edit a server profile template, the appliance analyzes the changes and updates the
template configuration. Then, all the server profiles created from the template are evaluated for
compliance and a notification is given indicating the number of profiles that will be affected by
the change. The profiles are marked as non-compliant."
So, does the statement above means that no changes will be applied against any server or blade (whether it be in production or powered off) ?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-17-2017 03:12 PM
тАО07-17-2017 03:12 PM
SolutionEditing a Server Profile Template does not push out or initiate a change rollout. If a setting within the Server Profile Template is modified, like the firmware baseline in your case, OneView will flag all associated child Server Profiles as "Not compliant". The administrator would need to perform the "Update from template" option from the Server Profile. You can do this on each server profile individually, multi-select in the inventory screen, or from the REST API (natively or with our PowerShell or Python libraries to script).
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-18-2017 06:53 AM - edited тАО07-18-2017 06:54 AM
тАО07-18-2017 06:53 AM - edited тАО07-18-2017 06:54 AM
Re: Oneview - Clarification of Server Profile Template changes
I am about to update the firmware baseline on the one of my profile templates which is used by 32 DL380 Gen 9 servers. Could you explain the process with more detailed and maybe share the link of the script that I would use?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-18-2017 07:02 AM
тАО07-18-2017 07:02 AM
Re: Oneview - Clarification of Server Profile Template changes
Thanks Chris,
Worked like a charm.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-18-2017 09:07 AM
тАО07-18-2017 09:07 AM
Re: Oneview - Clarification of Server Profile Template changes
Well, you can use the UI to multi select the resources that you want to perform the Update from template Actions operation. Or, you can use the Update-HPOVServerProfile Cmdlet to script that operation.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-25-2019 05:28 AM
тАО10-25-2019 05:28 AM
Re: Oneview - Clarification of Server Profile Template changes
First of all apologies for replying to a really old thread but how would you Update-HPOVServerProfile of unassigned type after doing a Join to template please?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-25-2019 08:07 AM
тАО10-25-2019 08:07 AM
Re: Oneview - Clarification of Server Profile Template changes
In the future, please feel free use the HPE OneView PowerShell issue tracker to ask specific questions about the library.
You could use the following script code to change the SP to SPT, and then perform updates to those profiles:
# Get the list of server profiles
$ServerProfiles = Get-HPOVServerProfile -Name Hypervisor-Prod*
# Get the new Server Profile Template
$ServerProfileTemplate = Get-HPOVServerProfileTemplate -Name UpdatedTemplate
# Join the server profiles to the new template
$ServerProfiles | ForEach {
#Join the server profile to the new template
Join-HPOVServerProfileToTemplate -Template $ServerProfileTemplate -ServerProfile $_
}
# Get the list of updated server profiles
$ServerProfiles = Get-HPOVServerProfile -Name Hypervisor-Prod*
# Perform the Update From Template operation
$ServerProfiles | Update-HPOVServerProfile
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]
