ansible / awx-resource-operator

41 stars 31 forks source link

Make Deprecated Fields Hidden in CSV #159

Closed neevnuv closed 5 months ago

neevnuv commented 5 months ago

After https://github.com/ansible/awx-resource-operator/pull/156#discussion_r1449476052

Changed the descriptors of the automation controller authentication secret field in csv from text to hidden.

Before:

- displayName: AWX Authentication Secret (DEPRECATED)
        path: tower_auth_secret
        x-descriptors:
        - urn:alm:descriptor:com.tectonic.ui:text
        - urn:alm:descriptor:io.kubernetes:Secret

After

- displayName: AWX Authentication Secret (DEPRECATED)
        path: tower_auth_secret
        x-descriptors:
        - urn:alm:descriptor:com.tectonic.ui:hidden
rooftopcellist commented 5 months ago

Thanks @neevnuv for putting this change together!