- Community Home
- >
- Software
- >
- HPE Morpheus Software
- >
- HPE Morpheus Enterprise Software
- >
- Re: Unable to Delete outdated Blueprint, node-type...
Categories
Company
Local Language
Forums
Discussions
- Integrity Servers
- Server Clustering
- HPE NonStop Compute
- HPE Apollo Systems
- High Performance Computing
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Knowledge Base
Forums
Discussions
- Cloud Mentoring and Education
- Software - General
- HPE OneView
- HPE Ezmeral Software platform
- HPE OpsRamp Software
Knowledge Base
Discussions
Forums
Discussions
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
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
04-09-2024 12:44 AM
04-09-2024 12:44 AM
Hello Team,
I would need your help here.
I have some Morpheus blueprints ex: Windows 2012, Ubuntu 18 and there are some nodetype and layout associate with it. Since 2012 and ubuntu 18 are now officially EOL, I am trying to delete the blueprint and nodetype but its not allowing me to delete stating some apps are associated / linked with the blueprint. I cant delete those apps since the app instances are already upgraded to next supported version, so we would need those instances. Can you please help on how to delete these EOL blueprints without impacting currently running instances ?
Solved! Go to Solution.
- Tags:
- blueprints
- node-types
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2024 05:07 AM
04-09-2024 05:07 AM
Re: Unable to Delete outdated Blueprint, node-type from Morpheus portal
Thanks, Deepti.
I don’t know how many apps are linked with the particular blueprint, is any way i can get the list ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2024 03:39 AM
04-10-2024 03:39 AM
Re: Unable to Delete outdated Blueprint, node-type from Morpheus portal
You can query app_template table to establish the id of your blueprint using its name:
select id from app_template where name = "test-blueprint";
// gives us 2
Then you can query the app table, to list all apps that use that blueprint/template id:
select id, name from app where template_id = 2;
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[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
04-09-2024 04:16 AM
04-09-2024 04:16 AM
SolutionThe only way I see is to unlink the blueprint from the app and that can be achieved by updating the template_id to null for that app from the database. Can run the following query to update that and then try to delete the blueprint.
UPDATE app SET template_id = null WHERE id = app_id
Replace the app_id with the id of the app which is linked to that blueprint. This can be seen on the app summary page
Thanks
Deepti