Skip to Main Content
IBM Z Software


This portal is to open public enhancement requests against IBM Z Software products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.

Status Needs more information
Created by Guest
Created on Sep 5, 2022

Add ability to include tags to the provisioned resources

Adding tags with metadata about the resources like Virtual Servers will help in large ICIC installations. These tags may be later used to filter resources in operations like inventory, billing, maintenance, automation and so on.

Tags are defined by the users, but examples include:

  • Environment: Dev/Test/Prod

  • Application

  • Owner/Requestor

  • Support team, etc

Idea priority Medium
  • Guest
    Reply
    |
    Dec 18, 2023

    Due to a database issue in our Customer Enhancement Request system, it was necessary to modify the Idea Reference field for ideas opened against the IBM Cloud Infrastructure Center. This will only impact ideas whose URLs have been bookmarked by a user within a browser; the creators of the ideas will still be able to find those they opened in the My Ideas section of the portals, the ideas will continue to be associated with any IBM Unified Portal shared group, and all users can continue to find ideas via searching on title and description contents in the portal search bars.

    This change has already been made; users who have bookmarked this idea will find their current bookmark will no longer work and that they need to change the Idea Reference in the URL from CIC-I-nn to ICIC-I-nn.

  • Guest
    Reply
    |
    Sep 19, 2022

    Hi Bill


    Thanks for the confirmation, I will talk to our OM team to see how this can be addressed soon, will keep you updated ~

  • Guest
    Reply
    |
    Sep 19, 2022

    Hi Chen,


    thank you for the reply. That's the mechanism I was looking for. Are there plans to make this available in the ICIC GUI as well?

  • Guest
    Reply
    |
    Sep 19, 2022

    @Bill

    Sorry for late reply due to no mail subscription on the topic and found it just now


    Actually we talked about 2 things in the requirement


    one is project based resource couning, e.g, we have different team, such as test,dev,prod etc, they have their resource view, this has been covered in CIC concept projects, you can refer to https://www.ibm.com/docs/en/cic/1.1.5?topic=management-managing-projects for further info and CIC current support multiple projects and different roles to operate


    The other is tag mechanism, which is you can add tag to a VM/volume or other resources so you can group and search for them,it is already provided by CIC through it's openstack API (not at UI yet) , for example,

    I can tag a VM then search the tag like below

    # nova server-tag-set d0a9b86a-e237-42e1-8c17-d307b9e7beec tag1
    # nova show d0a9b86a-e237-42e1-8c17-d307b9e7beec | grep tag
    | tags | ["tag1"]


    e.g after I tag the VM d09ab86a-xxx ,I can search for it like

    [root@m5404019 ~]# nova list
    +--------------------------------------+------------+--------+------------+-------------+-----------------------------+
    | ID | Name | Status | Task State | Power State | Networks |
    +--------------------------------------+------------+--------+------------+-------------+-----------------------------+
    | f78904cb-58c2-44fd-8a66-12b44f977a64 | rh85-tmpl | ACTIVE | - | Running | VLAN1=172.26.54.238 |
    | b181ea19-e401-4198-984a-8600fe74aded | rh85_prsm | ACTIVE | - | Running | prsm=172.26.92.104 |
    | 7667abe1-b294-4fed-bd19-7191f9f4cdeb | rh86_eckd1 | ACTIVE | - | Running | vlan5=10.5.0.252 |
    | 3d0010c2-7a34-4baa-8580-900829524386 | rhel79 | ACTIVE | - | Running | vlan5=10.5.0.9 |
    | d0a9b86a-e237-42e1-8c17-d307b9e7beec | rhel86_kvm | ACTIVE | - | Running | kvm-flat-dhcp=172.26.54.205 |
    +--------------------------------------+------------+--------+------------+-------------+-----------------------------+
    [root@m5404019 ~]# nova list --tags tag1
    +--------------------------------------+------------+--------+------------+-------------+-----------------------------+
    | ID | Name | Status | Task State | Power State | Networks |
    +--------------------------------------+------------+--------+------------+-------------+-----------------------------+
    | d0a9b86a-e237-42e1-8c17-d307b9e7beec | rhel86_kvm | ACTIVE | - | Running | kvm-flat-dhcp=172.26.54.205 |
    +--------------------------------------+------------+--------+------------+-------------+-----------------------------+


    so the question we are having is whether the above mechanism is what you are looking for ? API / CLI /UI as well? Thanks