Disabling the status feedback on products page

You can view the state of the products on the Products page inside a catalog. Administrators have the flexibility to show or hide this status feedback on the Products page. Regardless of this setting, the state of the product lifecycle events remains visible on the Gateway processing status pages so that the critical deployment information remains accessible to administrators.

About this task

You can show or hide the state of the product on the Products page in a catalog. To hide the state of the product on the Products page in a catalog, you add the DISABLE_RESOURCE_STATUS variable to the deployment configuration. When set to true, the state is hidden. When set to false, the state is displayed on the Products page.

Procedure

  1. Locate the API Manager deployment.
    kubectl --kubeconfig <kubeconfig_file> -n <namespace> get deploy
  2. Edit the API Manager deployment.
    kubectl --kubeconfig <kubeconfig_file> -n <namespace> edit deploy <deployment_name>
  3. In the environment section of the deployment configuration, add a variable:
    - name: DISABLE_RESOURCE_STATUS
      value: "true"
  4. Save the updated configuration.